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:
parent
b34b835b47
commit
590d3797c9
@ -19,10 +19,20 @@ module.exports = {
|
|||||||
PORT: 3103,
|
PORT: 3103,
|
||||||
DATABASE_URL: 'postgresql://llm:llm_secure_2026@localhost:5432/llm_gateway',
|
DATABASE_URL: 'postgresql://llm:llm_secure_2026@localhost:5432/llm_gateway',
|
||||||
TIP_DATABASE_URL: 'postgresql://tip:tip_prod_2026@localhost:5432/transceiver_db',
|
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',
|
LOG_LEVEL: 'info',
|
||||||
GITEA_URL: 'http://192.168.178.196:3000',
|
GITEA_URL: 'http://192.168.178.196:3000',
|
||||||
GITEA_TOKEN: '',
|
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
|
// Restart on crash, but not on intentional stop
|
||||||
autorestart: true,
|
autorestart: true,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user