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 .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### 1. Related Issue
Closes # (issue number)

### Type of Change (select one)
### 2. Type of Change (select one)
Type of Change: Bug Fix / New Feature / Code Refactor / Documentation Update / Other: __________

### 3. Description
Expand Down
42 changes: 0 additions & 42 deletions python/configs/agents/auto_trading_agent.yaml

This file was deleted.

24 changes: 13 additions & 11 deletions python/configs/agents/super_agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@
name: "Super Agent"
enabled: true

# TODO support agent level model config

# Model Configuration
# Super Agent typically needs a capable reasoning model
models:
# Primary model for triage, reasoning, and query enrichment
primary:
model_id: "anthropic/claude-haiku-4.5"
provider: "openrouter" # Must explicitly specify provider (not null)
# Provider-specific model mappings for fallback
# Used when primary provider fails and fallback is attempted
provider_models:
siliconflow: "deepseek-ai/DeepSeek-V3.1-Terminus" # Similar capability to Claude Haiku
google: "gemini-2.5-flash" # Fast and efficient like Claude Haiku
#models:
# # Primary model for triage, reasoning, and query enrichment
# primary:
# model_id: "anthropic/claude-haiku-4.5"
# provider: "openrouter" # Must explicitly specify provider (not null)
#
# # Provider-specific model mappings for fallback
# # Used when primary provider fails and fallback is attempted
# provider_models:
# siliconflow: "deepseek-ai/DeepSeek-V3.1-Terminus" # Similar capability to Claude Haiku
# google: "gemini-2.5-flash" # Fast and efficient like Claude Haiku

# Environment Variable Overrides
# Format: ENV_VAR_NAME -> config.path
Expand Down
2 changes: 1 addition & 1 deletion python/configs/providers/openrouter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ connection:
api_key_env: "OPENROUTER_API_KEY"

# Default model if none specified
default_model: "anthropic/claude-haiku-4.5"
default_model: "qwen/qwen-max"

# Model Parameters Defaults
defaults:
Expand Down