File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' token.js ' : patch
3
+ ---
4
+
5
+ Add gpt-4o mini
Original file line number Diff line number Diff line change 41
41
| Model | Chat Completion | Streaming | JSON Output | Image Input | Function Calling | N > 1 |
42
42
| ---------------------- | --------------- | --------- | ----------- | ----------- | ---------------- | ----- |
43
43
| gpt-4o | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
44
+ | gpt-4o-mini | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
44
45
| gpt-4o-2024-05-13 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
45
46
| gpt-4-turbo | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
46
47
| gpt-4-turbo-2024-04-09 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const models = {
12
12
openai : {
13
13
models : [
14
14
'gpt-4o' ,
15
+ 'gpt-4o-mini' ,
15
16
'gpt-4o-2024-05-13' ,
16
17
'gpt-4-turbo' ,
17
18
'gpt-4-turbo-2024-04-09' ,
@@ -36,6 +37,7 @@ export const models = {
36
37
supportsCompletion : true ,
37
38
supportsStreaming : [
38
39
'gpt-4o' ,
40
+ 'gpt-4o-mini' ,
39
41
'gpt-4o-2024-05-13' ,
40
42
'gpt-4-turbo' ,
41
43
'gpt-4-turbo-2024-04-09' ,
@@ -59,6 +61,7 @@ export const models = {
59
61
] as const ,
60
62
supportsJSON : [
61
63
'gpt-4o' ,
64
+ 'gpt-4o-mini' ,
62
65
'gpt-4o-2024-05-13' ,
63
66
'gpt-4-turbo' ,
64
67
'gpt-4-turbo-2024-04-09' ,
@@ -72,6 +75,7 @@ export const models = {
72
75
] as const ,
73
76
supportsImages : [
74
77
'gpt-4o' ,
78
+ 'gpt-4o-mini' ,
75
79
'gpt-4o-2024-05-13' ,
76
80
'gpt-4-turbo' ,
77
81
'gpt-4-turbo-2024-04-09' ,
@@ -82,6 +86,7 @@ export const models = {
82
86
] as const ,
83
87
supportsToolCalls : [
84
88
'gpt-4o' ,
89
+ 'gpt-4o-mini' ,
85
90
'gpt-4o-2024-05-13' ,
86
91
'gpt-4-turbo' ,
87
92
'gpt-4-turbo-2024-04-09' ,
You can’t perform that action at this time.
0 commit comments