Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion open-sse/config/providerModels.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const PROVIDER_MODELS = {
// GitHub Copilot - Google models
{ id: "gemini-2.5-pro", name: "Gemini 2.5 Pro" },
{ id: "gemini-3-flash", name: "Gemini 3 Flash" },
{ id: "gemini-3-pro", name: "Gemini 3 Pro" },
{ id: "gemini-3-pro-preview", name: "Gemini 3 Pro" },
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The display name here is inconsistent with the actual model ID and with other entries in this same file (e.g., gc and gemini both label gemini-3-pro-preview as “Gemini 3 Pro Preview”). Keeping the name as “Gemini 3 Pro” may confuse users who expect the stable/non-preview variant; consider renaming to “Gemini 3 Pro Preview” for consistency/clarity.

Suggested change
{ id: "gemini-3-pro-preview", name: "Gemini 3 Pro" },
{ id: "gemini-3-pro-preview", name: "Gemini 3 Pro Preview" },

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the gh model ID from gemini-3-pro to gemini-3-pro-preview will leave other mappings out of sync: src/shared/constants/pricing.js still defines GitHub Copilot pricing under the old key (gh["gemini-3-pro"]), and README usage examples still reference gh/gemini-3-pro. This will likely result in missing/incorrect pricing display for this model and outdated docs unless those references are updated as part of this PR.

Suggested change
{ id: "gemini-3-pro-preview", name: "Gemini 3 Pro" },
{ id: "gemini-3-pro", name: "Gemini 3 Pro" },

Copilot uses AI. Check for mistakes.
// GitHub Copilot - Other models
{ id: "grok-code-fast-1", name: "Grok Code Fast 1" },
{ id: "raptor-mini", name: "Raptor Mini" },
Expand Down
Loading