mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-19 19:11:52 +00:00
gpt-4.5-preview and gpt-4.5-preview-2025-02-27, refs #795
This commit is contained in:
parent
74baf33a56
commit
801b08bf40
1 changed files with 9 additions and 0 deletions
|
|
@ -67,6 +67,15 @@ def register_models(register):
|
|||
AsyncChat("gpt-4-turbo"),
|
||||
aliases=("gpt-4-turbo-preview", "4-turbo", "4t"),
|
||||
)
|
||||
# GPT-4.5
|
||||
register(
|
||||
Chat("gpt-4.5-preview-2025-02-27", vision=True),
|
||||
AsyncChat("gpt-4.5-preview-2025-02-27", vision=True),
|
||||
)
|
||||
register(
|
||||
Chat("gpt-4.5-preview", vision=True),
|
||||
AsyncChat("gpt-4.5-preview", vision=True),
|
||||
)
|
||||
# o1
|
||||
for model_id in ("o1", "o1-2024-12-17"):
|
||||
register(
|
||||
|
|
|
|||
Loading…
Reference in a new issue