Add LLM configuration options and update deployment workflow
Some checks failed
Test & Deploy API / test (push) Failing after 1m14s
Test & Deploy API / deploy (push) Has been skipped

- Introduced new API keys for Anthropic and Google in .env.example and settings.py
- Updated llm.py to retrieve API keys directly from settings
- Modified deploy.yaml to streamline code checkout and improve deployment process
This commit is contained in:
2026-03-03 16:52:56 +01:00
parent 091787a6da
commit 314780d59a
4 changed files with 46 additions and 17 deletions

View File

@@ -24,6 +24,8 @@ class Settings(BaseSettings):
QDRANT_API_KEY: str = ""
OPENAI_API_KEY: str = ""
ANTHROPIC_API_KEY: str = ""
GOOGLE_API_KEY: str = ""
LLM_MODEL: str = "gpt-4o"
LLM_ROUTER_MODEL: str = "gpt-4o-mini"