From 78fe77f4e659d7458d2e6785421d4c04636a0412 Mon Sep 17 00:00:00 2001 From: Yijia-Xiao Date: Mon, 11 May 2026 02:49:57 +0000 Subject: [PATCH] feat(llm): bump OpenAI catalog to GPT-5.5 frontier GPT-5.5 (Apr 2026, 1M ctx, $5/$30 per 1M) replaces GPT-5.4 as the catalog flagship. GPT-5.5 Pro replaces 5.4 Pro in the most-capable slot. GPT-5.4 demotes to previous-gen cost-effective option. --- tradingagents/llm_clients/model_catalog.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tradingagents/llm_clients/model_catalog.py b/tradingagents/llm_clients/model_catalog.py index b72aa6b20..47f9b5e16 100644 --- a/tradingagents/llm_clients/model_catalog.py +++ b/tradingagents/llm_clients/model_catalog.py @@ -34,14 +34,14 @@ MODEL_OPTIONS: ProviderModeOptions = { "quick": [ ("GPT-5.4 Mini - Fast, strong coding and tool use", "gpt-5.4-mini"), ("GPT-5.4 Nano - Cheapest, high-volume tasks", "gpt-5.4-nano"), - ("GPT-5.4 - Latest frontier, 1M context", "gpt-5.4"), + ("GPT-5.5 - Latest frontier, 1M context", "gpt-5.5"), ("GPT-4.1 - Smartest non-reasoning model", "gpt-4.1"), ], "deep": [ - ("GPT-5.4 - Latest frontier, 1M context", "gpt-5.4"), + ("GPT-5.5 - Latest frontier, 1M context", "gpt-5.5"), + ("GPT-5.4 - Previous-gen frontier, 1M context, cost-effective", "gpt-5.4"), ("GPT-5.2 - Strong reasoning, cost-effective", "gpt-5.2"), - ("GPT-5.4 Mini - Fast, strong coding and tool use", "gpt-5.4-mini"), - ("GPT-5.4 Pro - Most capable, expensive ($30/$180 per 1M tokens)", "gpt-5.4-pro"), + ("GPT-5.5 Pro - Most capable, expensive ($30/$180 per 1M tokens)", "gpt-5.5-pro"), ], }, "anthropic": {