personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update OpenAI tiers to use 5.4 model family properly

Pro uses gpt-5.4 (default reasoning), flash uses gpt-5.4-low
(reduced reasoning effort), lite uses gpt-5.4-mini (distinct
smaller model). Previously all three tiers were the same base
model with different reasoning effort suffixes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+4 -3
+4 -3
think/models.py
··· 43 43 # Map model names that genai-prices doesn't recognize yet to a known equivalent. 44 44 MODEL_PRICE_ALIASES: Dict[str, str] = { 45 45 "gpt-5.4": "gpt-5.2", 46 + "gpt-5.4-mini": "gpt-5-mini", 46 47 } 47 48 48 49 GEMINI_PRO = "gemini-3.1-pro-preview" 49 50 GEMINI_FLASH = "gemini-3-flash-preview" 50 51 GEMINI_LITE = "gemini-2.5-flash-lite" 51 52 52 - GPT_5 = "gpt-5.4-high" 53 - GPT_5_MINI = "gpt-5.4-medium" 54 - GPT_5_NANO = "gpt-5.4-low" 53 + GPT_5 = "gpt-5.4" 54 + GPT_5_MINI = "gpt-5.4-low" 55 + GPT_5_NANO = "gpt-5.4-mini" 55 56 56 57 CLAUDE_OPUS_4 = "claude-opus-4-5" 57 58 CLAUDE_SONNET_4 = "claude-sonnet-4-5"