Skip to content

Commit 1c9e534

Browse files
committed
Add o3-mini to supported models
1 parent b5121ec commit 1c9e534

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

+llms/+openai/models.m

+1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"o1-preview","o1-preview-2024-09-12",...
1515
"o1-mini","o1-mini-2024-09-12",...
1616
"o1","o1-2024-12-17",...
17+
"o3-mini", "o3-mini-2025-01-31",...
1718
];
1819
end

doc/OpenAI.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ To start using the OpenAI APIs, you first need to obtain OpenAI API keys. You ar
77
Some of the current LLMs supported on OpenAI are:
88
- gpt-4o-mini, gpt-4o-mini-2024-07-18
99
- o1, o1-mini
10+
- o3-mini
1011
- gpt-3.5-turbo, gpt-3.5-turbo-1106, gpt-3.5-turbo-0125
1112
- gpt-4o, gpt-4o-2024-05-13 (GPT-4 Omni)
1213
- gpt-4-turbo, gpt-4-turbo-2024-04-09 (GPT-4 Turbo with Vision)

tests/topenAIChat.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function constructChatWithAllNVP(testCase)
4747
function canUseModel(testCase,ModelName)
4848
testCase.verifyClass(generate(...
4949
openAIChat(ModelName=ModelName), ...
50-
"hi",MaxNumTokens=42), ...
50+
"hi"), ...
5151
"string");
5252
end
5353

0 commit comments

Comments
 (0)