feat: integrate Peg AI wellness coach
MetaBloom CI / app (push) Canceled after 0s
MetaBloom CI / api (push) Canceled after 0s

This commit is contained in:
AI Company
2026-07-21 21:15:19 +00:00
parent ca70688dd5
commit 16dccd2f76
10 changed files with 1970 additions and 63 deletions
+4 -1
View File
@@ -9,6 +9,10 @@ class Settings(BaseSettings):
access_token_minutes: int = 30
allowed_origins: str = "http://localhost:8081,http://localhost:19006"
environment: str = "development"
ai_base_url: str = "http://localhost:11434/v1"
ai_api_key: str = ""
ai_model: str = "llama3.2:3b"
ai_timeout_seconds: float = 20.0
model_config = SettingsConfigDict(env_file=".env", extra="ignore")
@property
@@ -19,4 +23,3 @@ class Settings(BaseSettings):
@lru_cache
def get_settings() -> Settings:
return Settings()