This commit is contained in:
parent
4ce2a96956
commit
bf02a3c59f
|
|
@ -12,6 +12,7 @@ services:
|
|||
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
||||
- ALPHA_VANTAGE_API_KEY=${ALPHA_VANTAGE_API_KEY}
|
||||
- TRADINGAGENTS_RESULTS_DIR=/app/results
|
||||
- TRADINGAGENTS_DATA_CACHE_DIR=/app/results/data_cache
|
||||
volumes:
|
||||
- ./results:/app/results
|
||||
- ./tradingagents:/app/tradingagents:ro
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ DEFAULT_CONFIG = {
|
|||
"project_dir": os.path.abspath(os.path.join(os.path.dirname(__file__), ".")),
|
||||
"results_dir": os.getenv("TRADINGAGENTS_RESULTS_DIR", "./results"),
|
||||
"data_dir": os.path.join(os.path.expanduser("~"), "Documents/Code/ScAI/FR1-data"),
|
||||
"data_cache_dir": os.path.join(
|
||||
"data_cache_dir": os.getenv("TRADINGAGENTS_DATA_CACHE_DIR", os.path.join(
|
||||
os.path.abspath(os.path.join(os.path.dirname(__file__), ".")),
|
||||
"dataflows/data_cache",
|
||||
),
|
||||
)),
|
||||
# LLM 設定
|
||||
"llm_provider": "openai",
|
||||
"deep_think_llm": "gpt-4o-mini",
|
||||
|
|
|
|||
Loading…
Reference in New Issue