Add MiniMax LLM integration and local .env support

- Add .env to .gitignore (API keys stay local)
- Add LLM client with MiniMax and OpenAI support
- Update config to load from environment variables
- Wire up Architect agent to actually call the LLM
- Add MiniMax API key to local .env file
This commit is contained in:
2026-03-12 18:33:29 +00:00
parent 40378ad65e
commit e151cee69f
5 changed files with 330 additions and 31 deletions
+31
View File
@@ -0,0 +1,31 @@
# Dependencies
__pycache__/
*.egg-info/
dist/
build/
.eggs/
# Virtual environments
venv/
.venv/
env/
# Local environment
.env
.env.local
*.local
# IDE
.idea/
.vscode/
*.swp
*.swo
# Testing
.pytest_cache/
.coverage
htmlcov/
# Output
output/
*.log