Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion forecasting_tools/ai_models/general_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class GeneralLlm(
"timeout": 80,
},
"deepseek/": {
"timeout": 150,
"timeout": 210,
},
"perplexity/": {
"timeout": 120,
Expand Down
3 changes: 3 additions & 0 deletions run_bots.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,7 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR
default_research_comparison_forecast_llm = GeneralLlm(
model="openrouter/deepseek/deepseek-r1",
temperature=default_temperature,
timeout=60 * 6,
)
grok_4_search_llm = GeneralLlm(
model="xai/grok-4-latest",
Expand All @@ -485,6 +486,7 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR
) # https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/web-search-tool
deepseek_r1_exa_online_llm = GeneralLlm(
model="openrouter/deepseek/deepseek-r1:online",
timeout=60 * 6,
)
o4_mini_deep_research_llm = GeneralLlm(
model="openai/o4-mini-deep-research",
Expand Down Expand Up @@ -527,6 +529,7 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR
GeneralLlm(
model="openrouter/deepseek/deepseek-r1",
temperature=default_temperature,
timeout=60 * 6,
),
),
}
Expand Down