Skip to content

Commit a00b37c

Browse files
committed
Fix missing 'Preview' designation in gemini-3-pro-preview model label
The MODEL_CATALOG entry for gemini-3-pro-preview had its label set to "Gemini 3 Pro", omitting the "Preview" designation and making it appear as a stable GA model. The sibling entry gemini-3-flash-preview correctly uses "Gemini 3 Flash Preview". This patch aligns the label with the model alias and its preview status. https://claude.ai/code/session_01E5pJiQ6Cu726PCBx9cJ76X
1 parent 651a4c1 commit a00b37c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/dumpcode/ai/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ class ModelConfig(TypedDict):
4747
# --- Google ---
4848
# Google uses its own SDK methods, so this param is informative/unused for now but good for consistency
4949
"gemini-3-pro-preview": {
50-
"provider": "google", "model_id": "gemini-3-pro-preview", "context": 1048576, "label": "Gemini 3 Pro",
51-
"token_param": "max_output_tokens"
50+
"provider": "google", "model_id": "gemini-3-pro-preview", "context": 1048576, "label": "Gemini 3 Pro Preview",
51+
"token_param": "max_output_tokens"
5252
},
5353
"gemini-2.5-pro": {
5454
"provider": "google", "model_id": "gemini-2.5-pro", "context": 1048576, "label": "Gemini 2.5 Pro",

0 commit comments

Comments
 (0)