We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b19353a commit e41ea88Copy full SHA for e41ea88
1 file changed
src/google/adk/tools/_search_agent_tool.py
@@ -68,7 +68,7 @@ async def run_async(
68
state_dict = {
69
k: v
70
for k, v in tool_context.state.to_dict().items()
71
- if not k.startswith('_adk') # Filter out adk internal states
+ if not k.startswith('_adk') and not k.startswith('temp:')
72
}
73
session = await runner.session_service.create_session(
74
app_name=self.agent.name,
0 commit comments