feat: Add gpt-5.1 model to Language models (#10590)

* Add gpt-5.1 model to starter projects

Added 'gpt-5.1' to the list of available models in all starter project JSON files to support the new model version. This update ensures users can select gpt-5.1 in agent configurations.

* [autofix.ci] apply automated fixes

* [autofix.ci] apply automated fixes (attempt 2/3)

* [autofix.ci] apply automated fixes (attempt 3/3)

* Update component_index.json

* [autofix.ci] apply automated fixes

* Update component_index.json

* [autofix.ci] apply automated fixes

* [autofix.ci] apply automated fixes (attempt 2/3)

* [autofix.ci] apply automated fixes (attempt 3/3)

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Edwin Jose
2025-11-14 15:20:58 -05:00
committed by GitHub
parent d107995c01
commit d1d005cf80
17 changed files with 27 additions and 1 deletions

View File

@ -2377,6 +2377,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1549,6 +1549,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1948,6 +1948,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1573,6 +1573,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1204,6 +1204,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1634,6 +1634,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -2001,6 +2001,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -2974,6 +2974,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1263,6 +1263,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1340,6 +1340,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -753,6 +753,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",
@ -1485,6 +1486,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",
@ -2988,6 +2990,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1326,6 +1326,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1684,6 +1684,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -2059,6 +2059,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",
@ -2784,6 +2785,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",
@ -3509,6 +3511,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

View File

@ -1155,6 +1155,7 @@
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-5.1",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",

File diff suppressed because one or more lines are too long

View File

@ -3,6 +3,13 @@ from .model_metadata import create_model_metadata
# Unified model metadata - single source of truth
OPENAI_MODELS_DETAILED = [
# GPT-5 Series
create_model_metadata(
provider="OpenAI",
name="gpt-5.1",
icon="OpenAI",
tool_calling=True,
reasoning=True,
),
create_model_metadata(
provider="OpenAI",
name="gpt-5",