Compare commits

..

2 Commits

Author SHA1 Message Date
Krishna Kumar
99d97c696b Fix OpenRouter model identifiers
- google/gemini-3-pro-preview → google/gemini-2.5-flash-preview-05-20
- anthropic/claude-sonnet-4.5 → anthropic/claude-sonnet-4
- x-ai/grok-4.1-fast → x-ai/grok-3-fast
2025-12-31 00:32:30 -06:00
Krishna Kumar
c4bd0a0509 Ignore .railway directory 2025-12-30 06:11:23 -06:00
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@@ -19,3 +19,4 @@ data/
frontend/node_modules/ frontend/node_modules/
frontend/dist/ frontend/dist/
frontend/.vite/.railway/ frontend/.vite/.railway/
.railway/

View File

@@ -11,13 +11,13 @@ OPENROUTER_API_KEY = os.getenv("OPENROUTER_API_KEY")
# Council members - list of OpenRouter model identifiers # Council members - list of OpenRouter model identifiers
COUNCIL_MODELS = [ COUNCIL_MODELS = [
"openai/gpt-4o", "openai/gpt-4o",
"google/gemini-3-pro-preview", "google/gemini-2.5-flash-preview-05-20",
"anthropic/claude-sonnet-4.5", "anthropic/claude-sonnet-4",
"x-ai/grok-4.1-fast", "x-ai/grok-3-fast",
] ]
# Chairman model - synthesizes final response # Chairman model - synthesizes final response
CHAIRMAN_MODEL = "google/gemini-3-pro-preview" CHAIRMAN_MODEL = "google/gemini-2.5-flash-preview-05-20"
# OpenRouter API endpoint # OpenRouter API endpoint
OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions" OPENROUTER_API_URL = "https://openrouter.ai/api/v1/chat/completions"