返回提交历史
Modified
docs/pydantic_ai.md
+1
-1
XFEstudio/gpt4free
Fix import for Agent
e632ef4a
代码差异
1 个文件
+1
-1
@@ -52,7 +52,7 @@ from pydantic_ai import Agent
52
52
53
53
# Define the agent
54
54
agent = Agent(
55
'g4f:Gemini:Gemini',
55
'g4f:Gemini:Gemini', # g4f:provider:model_name or g4f:model_name
56
56
system_prompt='Be concise, reply with one sentence.',
57
57
)
58
58
```