33d8e275e7
Estende ModelTier a 5 livelli (S/A/B/C/D) con routing automatico: S/A/B via Anthropic SDK, C/D via OpenRouter (OpenAI SDK). Aggiunge prezzi per tier S (Opus), A (Sonnet placeholder) e D (Llama). Refactor LLMClient.complete con dispatch tramite tier_models map e helper _call_anthropic / _call_openrouter. Settings esposte per tutti e 5 i modelli env-configurabili. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
606 B
Bash
24 lines
606 B
Bash
# Cerbero MCP (locale durante Phase 1)
|
|
CERBERO_BASE_URL=http://localhost:9000
|
|
CERBERO_TESTNET_TOKEN=
|
|
CERBERO_MAINNET_TOKEN=
|
|
CERBERO_BOT_TAG=swarm-poc-phase1
|
|
|
|
# LLM providers
|
|
OPENROUTER_API_KEY=
|
|
ANTHROPIC_API_KEY=
|
|
|
|
# LLM models (override Phase 1 defaults if needed)
|
|
LLM_MODEL_TIER_S=claude-opus-4-7
|
|
LLM_MODEL_TIER_A=claude-sonnet-4-6
|
|
LLM_MODEL_TIER_B=claude-sonnet-4-6
|
|
LLM_MODEL_TIER_C=qwen/qwen-2.5-72b-instruct
|
|
LLM_MODEL_TIER_D=meta-llama/llama-3.3-70b-instruct
|
|
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
|
|
|
|
# Run config
|
|
RUN_NAME=phase1-spike-001
|
|
DATA_DIR=./data
|
|
SERIES_DIR=./series
|
|
DB_PATH=./runs.db
|