fix: health-check workflow, add Ollama local LLM, revive active README with dynamic stats

Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-03 05:28:15 +00:00
parent 3132853f58
commit dce3811506
7 changed files with 403 additions and 22 deletions

View File

@@ -77,6 +77,10 @@ class Settings(BaseSettings):
GITHUB_TOKEN: str = ""
GITHUB_WEBHOOK_SECRET: str = ""
# Ollama local LLM
OLLAMA_BASE_URL: str = "http://localhost:11434"
OLLAMA_DEFAULT_MODEL: str = "llama3"
class Config:
env_file = ".env"
case_sensitive = True