mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
Added __all__ to models/__init__
This commit is contained in:
parent
bfbd7b8416
commit
ad3eeca80e
1 changed files with 10 additions and 0 deletions
|
@ -1,5 +1,15 @@
|
||||||
from .model import Model
|
from .model import Model
|
||||||
|
from .openai import OpenAIModel
|
||||||
|
from .openrouter import OpenRouterModel
|
||||||
|
|
||||||
GPT4 = Model.create("gpt-4")
|
GPT4 = Model.create("gpt-4")
|
||||||
GPT35 = Model.create("gpt-3.5-turbo")
|
GPT35 = Model.create("gpt-3.5-turbo")
|
||||||
GPT35_16k = Model.create("gpt-3.5-turbo-16k")
|
GPT35_16k = Model.create("gpt-3.5-turbo-16k")
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
OpenAIModel,
|
||||||
|
OpenRouterModel,
|
||||||
|
GPT4,
|
||||||
|
GPT35,
|
||||||
|
GPT35_16k,
|
||||||
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue