934 B
934 B
| type | status | date | agent_author | tags | related_files | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| decision | active | 2026-03-17 | claude |
|
|
Context
Need cost-effective LLM setup for scanner pipeline with different complexity tiers.
The Decision
Use hybrid approach:
- quick_think + mid_think:
qwen3.5:27bvia Ollama athttp://192.168.50.76:11434(local, free) - deep_think:
deepseek/deepseek-r1-0528via OpenRouter (cloud, paid)
Config location: tradingagents/default_config.py — per-tier _llm_provider and _backend_url keys.
Constraints
- Each tier must have its own
{tier}_llm_providerset explicitly. - Top-level
llm_providerandbackend_urlmust always exist as fallbacks.
Actionable Rules
- Never hardcode
localhost:11434for Ollama — always use configuredbase_url. - Per-tier providers fall back to top-level
llm_providerwhenNone.