Fix import for Agent

This commit is contained in:
hlohaus 2025-02-21 08:43:28 +01:00
parent 1d7155d28b
commit e632ef4ac1

View file

@ -52,7 +52,7 @@ from pydantic_ai import Agent
# Define the agent # Define the agent
agent = Agent( agent = Agent(
'g4f:Gemini:Gemini', 'g4f:Gemini:Gemini', # g4f:provider:model_name or g4f:model_name
system_prompt='Be concise, reply with one sentence.', system_prompt='Be concise, reply with one sentence.',
) )
``` ```