We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e523f commit 1189597Copy full SHA for 1189597
backend/onyx/llm/chat_llm.py
@@ -416,6 +416,9 @@ def _completion(
416
"o3-mini",
417
"o3",
418
"o3-preview",
419
+ "gpt-5",
420
+ "gpt-5-mini",
421
+ "gpt-5-nano",
422
]
423
424
try:
web/src/lib/hooks.ts
@@ -691,6 +691,9 @@ const MODEL_DISPLAY_NAMES: { [key: string]: string } = {
691
"gpt-3.5-turbo-0613": "GPT 3.5 Turbo (June 2023)",
692
"gpt-3.5-turbo-16k-0613": "GPT 3.5 Turbo 16k (June 2023)",
693
"gpt-3.5-turbo-0301": "GPT 3.5 Turbo (March 2023)",
694
+ "gpt-5": "GPT 5",
695
+ "gpt-5-mini": "GPT 5 Mini",
696
+ "gpt-5-nano": "GPT 5 Nano",
697
698
// Amazon models
699
"amazon.nova-micro@v1": "Amazon Nova Micro",
0 commit comments