We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2205dc6 commit 243d26eCopy full SHA for 243d26e
1 file changed
agents/matmaster_agent/flow_agents/agent.py
@@ -242,6 +242,7 @@ def after_init(self):
242
self.intent_agent,
243
self.expand_agent,
244
self.scene_agent,
245
+ self.thinking_agent,
246
self.plan_make_agent,
247
self.analysis_agent,
248
self.report_agent,
@@ -274,6 +275,11 @@ def expand_agent(self) -> LlmAgent:
274
275
def scene_agent(self) -> LlmAgent:
276
return self._scene_agent
277
278
+ @computed_field
279
+ @property
280
+ def thinking_agent(self) -> LlmAgent:
281
+ return self._thinking_agent
282
+
283
@computed_field
284
@property
285
def plan_make_agent(self) -> LlmAgent:
0 commit comments