Merge pull request #384 from akx/export-image-model

fix: export Image model
This commit is contained in:
Michael Yang
2024-12-17 12:59:50 -08:00
committed by GitHub
+2
View File
@@ -2,6 +2,7 @@ from ollama._client import Client, AsyncClient
from ollama._types import ( from ollama._types import (
Options, Options,
Message, Message,
Image,
Tool, Tool,
GenerateResponse, GenerateResponse,
ChatResponse, ChatResponse,
@@ -21,6 +22,7 @@ __all__ = [
'AsyncClient', 'AsyncClient',
'Options', 'Options',
'Message', 'Message',
'Image',
'Tool', 'Tool',
'GenerateResponse', 'GenerateResponse',
'ChatResponse', 'ChatResponse',