SPB Git forge

spb/uqo-chat

Public
14commits 1branches 0releases
1.4 MBsize
maindefault branch
17 days agolast push
Python 64.6% TypeScript 33.7% CSS 0.8%

chore: monthly LLM budget 2000 USD

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Simon-Pierre Boucher committed 18 days ago (Sep 6, 2026) parent 7a51d30

2 changed files +2 −2

modified .env.example +1 −1
@@ -10,7 +10,7 @@ MODEL_VISION=anthropic/claude-sonnet-4.6
10 10 EMBEDDINGS_BASE_URL=
11 11 EMBEDDINGS_API_KEY=
12 12 MODEL_EMBEDDINGS=
13 −LLM_MONTHLY_BUDGET_USD=300
13 +LLM_MONTHLY_BUDGET_USD=2000
14 14
15 15 # --- Recherche web
16 16 FIRECRAWL_API_KEY=
modified backend/app/core/config.py +1 −1
@@ -45,7 +45,7 @@ class Settings(BaseSettings):
45 45 LLM_MAX_TOOL_ITERATIONS: int = 12
46 46 LLM_TIMEOUT_SECONDS: int = 120
47 47 LLM_MAX_OUTPUT_TOKENS: int = 16000
48 − LLM_MONTHLY_BUDGET_USD: float = 300.0
48 + LLM_MONTHLY_BUDGET_USD: float = 2000.0
49 49 LLM_TURN_TIMEOUT_SECONDS: int = 300
50 50
51 51 # --- Web search ---
52 52