mirror of
https://github.com/Hopiu/llm.git
synced 2026-03-16 20:50:25 +00:00
Enable tools for o3, o3-mini, o4-mini, refs #988
This commit is contained in:
parent
c586f389e1
commit
bed617cd62
1 changed files with 6 additions and 6 deletions
|
|
@ -130,16 +130,16 @@ def register_models(register):
|
|||
AsyncChat("o1-mini", allows_system_prompt=False),
|
||||
)
|
||||
register(
|
||||
Chat("o3-mini", reasoning=True, supports_schema=True),
|
||||
AsyncChat("o3-mini", reasoning=True, supports_schema=True),
|
||||
Chat("o3-mini", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
AsyncChat("o3-mini", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
)
|
||||
register(
|
||||
Chat("o3", reasoning=True, supports_schema=True),
|
||||
AsyncChat("o3", reasoning=True, supports_schema=True),
|
||||
Chat("o3", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
AsyncChat("o3", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
)
|
||||
register(
|
||||
Chat("o4-mini", reasoning=True, supports_schema=True),
|
||||
AsyncChat("o4-mini", reasoning=True, supports_schema=True),
|
||||
Chat("o4-mini", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
AsyncChat("o4-mini", reasoning=True, supports_schema=True, supports_tools=True),
|
||||
)
|
||||
# The -instruct completion model
|
||||
register(
|
||||
|
|
|
|||
Loading…
Reference in a new issue