@@ -247,6 +247,7 @@ class FakeCfg:
247247 total_tokens_limit : int = 1000
248248 orchestrator_agent_provider : str = "prov"
249249 orchestrator_agent_model : str = "mod"
250+ orchestrator_agent_temperature : float = 0.1
250251
251252 orch = OrchestratorAgent (FakeCfg (), _FakeLocatorAgent (is_failed = False ))
252253 payload = PromptPayload (
@@ -277,6 +278,7 @@ class FakeCfg:
277278 total_tokens_limit : int = 1000
278279 orchestrator_agent_provider : str = "prov"
279280 orchestrator_agent_model : str = "mod"
281+ orchestrator_agent_temperature : float = 0.1
280282
281283 orch = OrchestratorAgent (FakeCfg (), _FakeLocatorAgent (is_failed = True ))
282284 payload = PromptPayload (
@@ -316,6 +318,7 @@ class FakeCfg:
316318 total_tokens_limit : int = 1000
317319 orchestrator_agent_provider : str = "prov"
318320 orchestrator_agent_model : str = "mod"
321+ orchestrator_agent_temperature : float = 0.1
319322
320323 orch = OrchestratorAgent (FakeCfg (), _FakeLocatorAgent (is_failed = True ))
321324 payload = PromptPayload (
@@ -353,6 +356,7 @@ class FakeCfg:
353356 total_tokens_limit : int = 1000
354357 orchestrator_agent_provider : str = "prov"
355358 orchestrator_agent_model : str = "mod"
359+ orchestrator_agent_temperature : float = 0.1
356360
357361 orch = OrchestratorAgent (
358362 FakeCfg (),
@@ -373,6 +377,7 @@ class FakeCfg:
373377 total_tokens_limit : int = 1000
374378 orchestrator_agent_provider : str = "prov"
375379 orchestrator_agent_model : str = "mod"
380+ orchestrator_agent_temperature : float = 0.1
376381
377382 orch = OrchestratorAgent (
378383 FakeCfg (), _FakeLocatorAgent (is_failed = True , raise_on_heal = True )
@@ -390,4 +395,4 @@ def test_catch_token_limit_exceedance_logs(
390395 assert logger .infos == ["error: out of tokens" ]
391396 logger .infos .clear ()
392397 OrchestratorAgent ._catch_token_limit_exceedance ("ok" )
393- assert logger .infos == []
398+ assert logger .infos == []
0 commit comments