feat(chat): add GPT-5.5 to v2 chat pane#3808
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughTwo files are updated to register a new OpenAI model ( Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Greptile SummaryThis PR adds GPT-5.5 ( Confidence Score: 5/5Safe to merge — minimal, consistent change with no logic or security concerns. Both files are updated symmetrically, the new entry follows the established No files require special attention.
|
| Filename | Overview |
|---|---|
| packages/trpc/src/router/chat/chat.ts | Adds openai/gpt-5.5 entry to the AVAILABLE_MODELS array, following existing naming and provider conventions; no logic changes. |
| apps/desktop/src/renderer/lib/dev-chat.ts | Mirrors the server-side change by adding openai/gpt-5.5 to DEV_CHAT_MODELS in the same relative position (top of OpenAI section). |
Sequence Diagram
sequenceDiagram
participant UI as Chat UI (model picker)
participant TRPC as chat.getModels (tRPC)
participant MODELS as AVAILABLE_MODELS registry
UI->>TRPC: getModels()
TRPC->>MODELS: read list
MODELS-->>TRPC: [...Anthropic models, gpt-5.5, gpt-5.4, gpt-5.3-codex]
TRPC-->>UI: { models: [...] }
UI->>UI: render model picker (GPT-5.5 at top of OpenAI section)
Note over UI: Dev/desktop fallback path
UI->>UI: isDesktopChatDevMode() → true
UI->>UI: getDesktopChatModelOptions() → DEV_CHAT_MODELS (includes gpt-5.5)
Reviews (1): Last reviewed commit: "feat(chat): add GPT-5.5 to v2 chat pane ..." | Re-trigger Greptile
🧹 Preview Cleanup CompleteThe following preview resources have been cleaned up:
Thank you for your contribution! 🎉 |
Summary
openai/gpt-5.5(GPT-5.5) as the newest OpenAI option in the v2 chat pane model pickerchat.getModelsregistry and the desktop dev fallback listTest plan
Summary by cubic
Adds
openai/gpt-5.5to the v2 chat pane model picker and server-side model registry. Also updates the desktop dev fallback list so GPT-5.5 appears at the top of the OpenAI section and routes messages correctly.Written for commit 0732aed. Summary will update on new commits. Review in cubic
Summary by CodeRabbit