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 8c9ad90 commit 346eebbCopy full SHA for 346eebb
pydantic_ai_slim/pydantic_ai/agent/__init__.py
@@ -651,10 +651,11 @@ async def get_instructions(run_context: RunContext[AgentDepsT]) -> str | None:
651
try:
652
async with toolset:
653
async with graph.iter(
654
+ inputs=user_prompt_node,
655
state=state,
656
deps=graph_deps,
- inputs=user_prompt_node,
657
span=use_span(run_span) if run_span.is_recording() else None,
658
+ infer_name=False,
659
) as graph_run:
660
agent_run = AgentRun(graph_run)
661
yield agent_run
0 commit comments