config: raise llm call caps

This commit is contained in:
Brad Stein 2026-02-03 01:54:32 -03:00
parent 3643870504
commit 68fbacf935

View File

@ -170,9 +170,9 @@ def load_settings() -> Settings:
fast_max_candidates=_env_int("ATLASBOT_FAST_MAX_CANDIDATES", "2"),
smart_max_candidates=_env_int("ATLASBOT_SMART_MAX_CANDIDATES", "6"),
genius_max_candidates=_env_int("ATLASBOT_GENIUS_MAX_CANDIDATES", "10"),
fast_llm_calls_max=_env_int("ATLASBOT_FAST_LLM_CALLS_MAX", "9"),
smart_llm_calls_max=_env_int("ATLASBOT_SMART_LLM_CALLS_MAX", "17"),
genius_llm_calls_max=_env_int("ATLASBOT_GENIUS_LLM_CALLS_MAX", "32"),
fast_llm_calls_max=_env_int("ATLASBOT_FAST_LLM_CALLS_MAX", "24"),
smart_llm_calls_max=_env_int("ATLASBOT_SMART_LLM_CALLS_MAX", "48"),
genius_llm_calls_max=_env_int("ATLASBOT_GENIUS_LLM_CALLS_MAX", "96"),
llm_limit_multiplier=_env_float("ATLASBOT_LLM_LIMIT_MULTIPLIER", "1.5"),
debug_pipeline=_env_bool("ATLASBOT_DEBUG_PIPELINE", "false"),
)