Skip to content

Commit 061cd73

Browse files
authored
Merge pull request #138 from rjmacarthy/feat/openai-o3-mini
Add o3-mini
2 parents 636029a + db99f0f commit 061cd73

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/providers/openai.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ main()
6363
| gpt-3.5-turbo-1106 |||||||
6464
| gpt-3.5-turbo-0125 |||||||
6565
| gpt-3.5-turbo-16k-0613 |||||||
66+
| o3-mini |||||||
6667
| o1-mini |||||||
6768
| o1-mini-2024-09-12 |||||||
6869
| o1-preview |||||||

src/models.ts

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export const models = {
3434
'gpt-3.5-turbo-1106',
3535
'gpt-3.5-turbo-0125',
3636
'gpt-3.5-turbo-16k-0613',
37+
'o3-mini',
3738
'o1-mini',
3839
'o1-mini-2024-09-12',
3940
'o1-preview',
@@ -64,6 +65,7 @@ export const models = {
6465
'gpt-3.5-turbo-1106',
6566
'gpt-3.5-turbo-0125',
6667
'gpt-3.5-turbo-16k-0613',
68+
'o3-mini',
6769
] as const,
6870
supportsJSON: [
6971
'gpt-4o',
@@ -79,6 +81,7 @@ export const models = {
7981
'gpt-3.5-turbo',
8082
'gpt-3.5-turbo-1106',
8183
'gpt-3.5-turbo-0125',
84+
'o3-mini',
8285
] as const,
8386
supportsImages: [
8487
'gpt-4o',
@@ -108,6 +111,7 @@ export const models = {
108111
'gpt-3.5-turbo-0125',
109112
'gpt-3.5-turbo-1106',
110113
'gpt-3.5-turbo-0613',
114+
'o3-mini',
111115
] as const,
112116
supportsN: true,
113117
generateDocs: true,

0 commit comments

Comments
 (0)