chore: update ecosystem.config.cjs with claude-bridge and fixed ollama URL

- CLAUDE_BRIDGE_URL: http://localhost:3250
- CLAUDE_BRIDGE_ENABLED: true
- OLLAMA_URL: http://192.168.178.213:11434 (direct IP instead of HTTPS tunnel)
- LLM_PROVIDERS: claude,cerebras,groq,mistral,nvidia
- Add free LLM API keys (empty, to be filled with actual keys)
This commit is contained in:
Rene Fichtmueller 2026-04-25 12:19:09 +02:00
parent b34b835b47
commit 590d3797c9

View File

@ -19,10 +19,20 @@ module.exports = {
PORT: 3103,
DATABASE_URL: 'postgresql://llm:llm_secure_2026@localhost:5432/llm_gateway',
TIP_DATABASE_URL: 'postgresql://tip:tip_prod_2026@localhost:5432/transceiver_db',
OLLAMA_URL: 'https://ollama.fichtmueller.org',
OLLAMA_URL: 'http://192.168.178.213:11434',
LOG_LEVEL: 'info',
GITEA_URL: 'http://192.168.178.196:3000',
GITEA_TOKEN: '',
// LLM Provider Configuration
CLAUDE_BRIDGE_URL: 'http://localhost:3250',
CLAUDE_BRIDGE_ENABLED: 'true',
LLM_PROVIDERS: 'claude,cerebras,groq,mistral,nvidia',
// Free LLM APIs (add keys as needed)
CEREBRAS_API_KEY: '',
GROQ_API_KEY: '',
MISTRAL_API_KEY: '',
NVIDIA_API_KEY: '',
OPENROUTER_API_KEY: '',
},
// Restart on crash, but not on intentional stop
autorestart: true,