File tree Expand file tree Collapse file tree
src/pythinker_code/tools/agent Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -374,6 +374,11 @@ async def _run_in_background(self, params: Params) -> ToolReturnValue:
374374 thinking = self ._runtime .llm .thinking
375375 if self ._runtime .llm is not None
376376 else None ,
377+ thinking_effort = (
378+ self ._runtime .llm .thinking_effort
379+ if self ._runtime .llm is not None
380+ else None
381+ ),
377382 parent_agent_id = self ._runtime .subagent_id ,
378383 ),
379384 )
@@ -457,6 +462,7 @@ async def _run_in_background(self, params: Params) -> ToolReturnValue:
457462def _run_agents_fingerprint (params : RunAgentsParams ) -> str :
458463 payload = {
459464 "summary" : params .summary ,
465+ "base_prompt" : params .base_prompt ,
460466 "agent_count" : len (params .agents ),
461467 "agent_names" : [agent .name for agent in params .agents ],
462468 "subagent_types" : [agent .subagent_type or "coder" for agent in params .agents ],
You can’t perform that action at this time.
0 commit comments