mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
chore(mana-llm): thread GOOGLE_API_KEY + default model into local compose
Matches the macmini compose — Google Gemini was already wired in the provider adapter (commit 2 of the function-calling migration) but the local dev stack's compose never passed the env through, so the container booted without the provider and every tool-calling request fell back to Ollama (unreachable in local dev, LAN-only GPU box). With this in place the local mana-llm healthcheck reports both `google` and `openrouter` as healthy and the webapp planner hits Gemini Flash for real. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
264c4c3087
commit
da373491b8
1 changed files with 2 additions and 0 deletions
|
|
@ -16,6 +16,8 @@ services:
|
|||
- OLLAMA_TIMEOUT=120
|
||||
- REDIS_URL=redis://redis:6379
|
||||
# Add API keys via .env file
|
||||
- GOOGLE_API_KEY=${GOOGLE_API_KEY:-}
|
||||
- GOOGLE_DEFAULT_MODEL=${GOOGLE_DEFAULT_MODEL:-gemini-2.5-flash}
|
||||
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY:-}
|
||||
- GROQ_API_KEY=${GROQ_API_KEY:-}
|
||||
- TOGETHER_API_KEY=${TOGETHER_API_KEY:-}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue