Skip to content

Commit c97bfa8

Browse files
committed
models: add gpt-5-mini and gpt-5-nano to RESPONSES_MODELS list
1 parent bfc4e50 commit c97bfa8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

include/openai/OpenAITypes.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,11 @@ std::string getRecommendedApiForModel(const std::string& model);
10251025

10261026
// Model lists for different APIs
10271027
const std::vector<std::string> RESPONSES_MODELS = {
1028-
"gpt-5", "gpt-4o", "gpt-4o-mini", "gpt-4.1", "gpt-4.1-nano", "gpt-4.1-mini",
1029-
"gpt-image-1", "o1", "o3-mini", "o3", "o4-mini", "computer-use-preview"};
1028+
"gpt-5", "gpt-5-mini", "gpt-5-nano",
1029+
"gpt-4o", "gpt-4o-mini",
1030+
"gpt-4.1", "gpt-4.1-nano", "gpt-4.1-mini",
1031+
"gpt-image-1", "o1", "o3-mini", "o3",
1032+
"o4-mini", "computer-use-preview"};
10301033

10311034
const std::vector<std::string> CHAT_COMPLETION_MODELS = {"gpt-4", "gpt-4-turbo", "gpt-4o",
10321035
"gpt-4o-mini", "gpt-3.5-turbo"};

0 commit comments

Comments
 (0)