- qualify_ai_service : ai_frame_async() avec Claude Haiku · round 1 → questions contextualisées si ANTHROPIC_API_KEY définie · round 2 → explication enrichie par Claude · fallback transparent sur ai_frame() si pas de clé (tests inchangés) - config : ANTHROPIC_API_KEY + ANTHROPIC_MODEL (claude-haiku-4-5-20251001) - requirements : anthropic>=0.97.0 - main : auth rate limit = RATE_LIMIT_DEFAULT partout (prototype mode) → supporte accès démo/test sans lockout en prod comme en dev Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
56 lines
1.6 KiB
Python
56 lines
1.6 KiB
Python
from pydantic_settings import BaseSettings
|
|
from pathlib import Path
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
APP_NAME: str = "libreDecision"
|
|
DEBUG: bool = True
|
|
|
|
# Environment
|
|
ENVIRONMENT: str = "development" # development, staging, production
|
|
DEMO_MODE: bool = False # Enable demo profiles (quick login) regardless of ENVIRONMENT
|
|
LOG_LEVEL: str = "INFO"
|
|
|
|
# Database — SQLite by default for local dev, PostgreSQL for Docker/prod
|
|
DATABASE_URL: str = "sqlite+aiosqlite:///./libredecision.db"
|
|
DATABASE_POOL_SIZE: int = 20
|
|
DATABASE_MAX_OVERFLOW: int = 10
|
|
|
|
# Auth
|
|
SECRET_KEY: str = "change-me-in-production-with-a-real-secret-key"
|
|
CHALLENGE_EXPIRE_SECONDS: int = 300
|
|
TOKEN_EXPIRE_HOURS: int = 24
|
|
SESSION_TTL_HOURS: int = 24
|
|
|
|
# Duniter V2 RPC
|
|
DUNITER_RPC_URL: str = "wss://gdev.p2p.legal/ws"
|
|
DUNITER_RPC_TIMEOUT_SECONDS: int = 10
|
|
|
|
# IPFS
|
|
IPFS_API_URL: str = "http://localhost:5001"
|
|
IPFS_GATEWAY_URL: str = "http://localhost:8080"
|
|
IPFS_TIMEOUT_SECONDS: int = 30
|
|
|
|
# CORS
|
|
CORS_ORIGINS: list[str] = ["http://localhost:3002"]
|
|
|
|
# Rate limiting (requests per minute)
|
|
RATE_LIMIT_DEFAULT: int = 60
|
|
RATE_LIMIT_AUTH: int = 10
|
|
RATE_LIMIT_VOTE: int = 30
|
|
|
|
# AI (Claude — substitut Qwen en attendant le déploiement local)
|
|
ANTHROPIC_API_KEY: str = ""
|
|
ANTHROPIC_MODEL: str = "claude-haiku-4-5-20251001"
|
|
|
|
# Blockchain cache
|
|
BLOCKCHAIN_CACHE_TTL_SECONDS: int = 3600
|
|
|
|
# Paths
|
|
BASE_DIR: Path = Path(__file__).resolve().parent.parent
|
|
|
|
model_config = {"env_file": ".env", "env_file_encoding": "utf-8"}
|
|
|
|
|
|
settings = Settings()
|