Question
Hi Pydantic AI,
Simple question, Is output_type the same when set in .run() as when set in the Agent?
Because they is not mention in the documentation.
Additional Context
result = await agent.run(
...
output_type=Response,
)
# And
Agent(
...
output_type=Response,
)