chore: add Polymarket dependencies and update config
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
aec0dbcf0d
commit
50a705dc12
|
|
@ -19,3 +19,8 @@ typer
|
||||||
questionary
|
questionary
|
||||||
langchain_anthropic
|
langchain_anthropic
|
||||||
langchain-google-genai
|
langchain-google-genai
|
||||||
|
py-clob-client
|
||||||
|
tavily-python
|
||||||
|
tweepy
|
||||||
|
praw
|
||||||
|
pydantic
|
||||||
|
|
|
||||||
|
|
@ -8,27 +8,28 @@ DEFAULT_CONFIG = {
|
||||||
"dataflows/data_cache",
|
"dataflows/data_cache",
|
||||||
),
|
),
|
||||||
# LLM settings
|
# LLM settings
|
||||||
"llm_provider": "openai",
|
"llm_provider": "openrouter",
|
||||||
"deep_think_llm": "gpt-5.2",
|
"deep_think_llm": "z-ai/glm-4.5-air:free",
|
||||||
"quick_think_llm": "gpt-5-mini",
|
"quick_think_llm": "nvidia/nemotron-3-nano-30b-a3b:free",
|
||||||
"backend_url": "https://api.openai.com/v1",
|
"backend_url": "https://openrouter.ai/api/v1",
|
||||||
# Provider-specific thinking configuration
|
# Provider-specific thinking configuration
|
||||||
"google_thinking_level": None, # "high", "minimal", etc.
|
"google_thinking_level": None,
|
||||||
"openai_reasoning_effort": None, # "medium", "high", "low"
|
"openai_reasoning_effort": None,
|
||||||
# Debate and discussion settings
|
# Debate and discussion settings
|
||||||
"max_debate_rounds": 1,
|
"max_debate_rounds": 1, # 1 round = 3 turns in 3-way debate
|
||||||
"max_risk_discuss_rounds": 1,
|
"max_risk_discuss_rounds": 1,
|
||||||
"max_recur_limit": 100,
|
"max_recur_limit": 100,
|
||||||
# Data vendor configuration
|
# API keys (loaded from env)
|
||||||
# Category-level configuration (default for all tools in category)
|
"tavily_api_key": os.getenv("TAVILY_API_KEY"),
|
||||||
"data_vendors": {
|
"twitter_bearer_token": os.getenv("TWITTER_BEARER_TOKEN"),
|
||||||
"core_stock_apis": "yfinance", # Options: alpha_vantage, yfinance
|
"reddit_client_id": os.getenv("REDDIT_CLIENT_ID"),
|
||||||
"technical_indicators": "yfinance", # Options: alpha_vantage, yfinance
|
"reddit_client_secret": os.getenv("REDDIT_CLIENT_SECRET"),
|
||||||
"fundamental_data": "yfinance", # Options: alpha_vantage, yfinance
|
"polymarket_relayer_key": os.getenv("POLYMARKET_RELAYER_KEY"),
|
||||||
"news_data": "yfinance", # Options: alpha_vantage, yfinance
|
# Auto-scan defaults
|
||||||
},
|
"scan_defaults": {
|
||||||
# Tool-level configuration (takes precedence over category-level)
|
"min_volume_24h": 10000,
|
||||||
"tool_vendors": {
|
"min_liquidity": 5000,
|
||||||
# Example: "get_stock_data": "alpha_vantage", # Override category default
|
"max_days_to_end": 30,
|
||||||
|
"categories": [],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue