We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaeb4b6 commit 2ac3da7Copy full SHA for 2ac3da7
docs/use-cases/AI_ML/MCP/ai_agent_libraries/upsonic.md
@@ -70,6 +70,7 @@ and also initialize our agent and ask it a question:
70
71
```python
72
from upsonic import Agent, Task
73
+from upsonic.models.openai import OpenAIResponsesModel
74
```
75
76
@@ -94,7 +95,7 @@ database_agent = Agent(
94
95
name="Data Analyst",
96
role="ClickHouse specialist.",
97
goal="Query ClickHouse database and tables and answer questions",
- model="openai/o3-mini"
98
+ model=OpenAIResponsesModel(model_name="gpt-5-mini-2025-08-07")
99
)
100
101
0 commit comments