Add gpt-4o-mini, update examples (#253)

This commit is contained in:
Eric Zhu
2024-07-23 18:05:16 -07:00
committed by GitHub
parent 2288aee72b
commit 176932ef9c
12 changed files with 29 additions and 22 deletions

View File

@@ -197,7 +197,7 @@ async def main() -> None:
lambda: ToolUseAgent(
description="Tool Use Agent",
system_messages=[SystemMessage("You are a helpful AI Assistant. Use your tools to solve problems.")],
model_client=get_chat_completion_client_from_envs(model="gpt-3.5-turbo"),
model_client=get_chat_completion_client_from_envs(model="gpt-4o-mini"),
tools=tools,
),
)