mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-09-19 11:15:24 +03:00
- the custom model option does not exist for every provider; name any model ID instead - alpha is measured against the regional benchmark, not always SPY - the environment overrides a fixed set of config keys - list the providers the picker offers, and the macro data key - drop the example call to a method that was removed
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
# LLM Providers (set the one you use)
|
|
OPENAI_API_KEY=
|
|
GOOGLE_API_KEY=
|
|
ANTHROPIC_API_KEY=
|
|
XAI_API_KEY=
|
|
DEEPSEEK_API_KEY=
|
|
DASHSCOPE_API_KEY=
|
|
DASHSCOPE_CN_API_KEY=
|
|
ZHIPU_API_KEY=
|
|
ZHIPU_CN_API_KEY=
|
|
MINIMAX_API_KEY=
|
|
MINIMAX_CN_API_KEY=
|
|
OPENROUTER_API_KEY=
|
|
MISTRAL_API_KEY=
|
|
MOONSHOT_API_KEY=
|
|
GROQ_API_KEY=
|
|
NVIDIA_API_KEY=
|
|
|
|
# SEC EDGAR (US company filings, point-in-time). No key; a contact address SEC can reach you at.
|
|
#SEC_EDGAR_USER_AGENT=Your Name your@email.com
|
|
|
|
# FRED (Federal Reserve macro data). Free key: https://fred.stlouisfed.org/docs/api/api_key.html
|
|
#FRED_API_KEY=
|
|
|
|
# Custom OpenAI-compatible endpoint (vLLM, LM Studio, llama.cpp). Local servers need no key.
|
|
#OPENAI_COMPATIBLE_API_KEY=
|
|
|
|
# AWS Bedrock (pip install ".[bedrock]"). Bearer token, or the AWS credential chain; set the region either way.
|
|
#AWS_BEARER_TOKEN_BEDROCK=
|
|
#AWS_DEFAULT_REGION=us-west-2
|
|
#AWS_PROFILE=
|
|
|
|
# Remote Ollama server. Unset uses http://localhost:11434/v1.
|
|
#OLLAMA_BASE_URL=http://your-ollama-host:11434/v1
|
|
|
|
# Override these DEFAULT_CONFIG keys. Provider, models, language and round counts also skip their CLI prompt.
|
|
#TRADINGAGENTS_LLM_PROVIDER=openai
|
|
#TRADINGAGENTS_DEEP_THINK_LLM=gpt-5.6
|
|
#TRADINGAGENTS_QUICK_THINK_LLM=gpt-5.6-luna
|
|
#TRADINGAGENTS_LLM_BACKEND_URL=
|
|
#TRADINGAGENTS_OUTPUT_LANGUAGE=English
|
|
#TRADINGAGENTS_MAX_DEBATE_ROUNDS=1
|
|
#TRADINGAGENTS_MAX_RISK_ROUNDS=1
|
|
#TRADINGAGENTS_CHECKPOINT_ENABLED=false
|
|
|
|
# Lower temperature means less run-to-run variation on models that honor it.
|
|
#TRADINGAGENTS_TEMPERATURE=0.0
|
|
|
|
# Retry budget for every LLM SDK. Raise it to ride out 429 throttling.
|
|
#TRADINGAGENTS_LLM_MAX_RETRIES=6
|
|
|
|
# Cap output tokens to bound a model that runs long and trips a timeout.
|
|
#TRADINGAGENTS_MAX_TOKENS=8192
|
|
|
|
# Reasoning depth per provider; setting one skips its prompt.
|
|
#TRADINGAGENTS_OPENAI_REASONING_EFFORT=medium
|
|
#TRADINGAGENTS_GOOGLE_THINKING_LEVEL=high
|
|
#TRADINGAGENTS_ANTHROPIC_EFFORT=high
|