diff --git a/backend/config.py b/backend/config.py index 6762b5f..6aba045 100644 --- a/backend/config.py +++ b/backend/config.py @@ -11,13 +11,13 @@ OPENROUTER_API_KEY = os.getenv("OPENROUTER_API_KEY") # Council members - list of OpenRouter model identifiers COUNCIL_MODELS = [ "openai/gpt-4o", - "google/gemini-2.5-flash-preview-05-20", - "anthropic/claude-sonnet-4", - "x-ai/grok-3-fast", + "google/gemini-2.5-flash", + "anthropic/claude-3.5-haiku", + "x-ai/grok-3-mini", ] # Chairman model - synthesizes final response -CHAIRMAN_MODEL = "google/gemini-2.5-flash-preview-05-20" +CHAIRMAN_MODEL = "google/gemini-2.5-flash" # OpenRouter API endpoint OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"