Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ benchmarks/results
build
docs/build
logs
.worktrees/
6 changes: 6 additions & 0 deletions outlines/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from .dottxt import Dottxt, from_dottxt
from .gemini import Gemini, from_gemini
from .llamacpp import LlamaCpp, from_llamacpp
from .lmstudio import AsyncLMStudio, LMStudio, from_lmstudio
from .mistral import AsyncMistral, Mistral, from_mistral
from .mlxlm import MLXLM, from_mlxlm
from .ollama import AsyncOllama, Ollama, from_ollama
Expand All @@ -33,6 +34,7 @@
Anthropic,
Dottxt,
Gemini,
LMStudio,
Ollama,
OpenAI,
Mistral,
Expand All @@ -42,6 +44,7 @@
VLLMOffline,
]
AsyncBlackBoxModel = Union[
AsyncLMStudio,
AsyncMistral,
AsyncOllama,
AsyncOpenAI,
Expand All @@ -62,6 +65,9 @@
"from_gemini",
"LlamaCpp",
"from_llamacpp",
"AsyncLMStudio",
"LMStudio",
"from_lmstudio",
"AsyncMistral",
"Mistral",
"from_mistral",
Expand Down
Loading
Loading