Skip to content

Commit 73451fc

Browse files
authored
Merge pull request #110 from GravyPouch/add-new-gpt-model
2 parents fe315f8 + 2c90288 commit 73451fc

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.changeset/moody-spoons-return.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'token.js': patch
3+
---
4+
5+
adding support for openai model gpt-4o-2024-08-06

docs/providers/openai.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ main()
4343
| gpt-4o |||||||
4444
| gpt-4o-mini |||||||
4545
| gpt-4o-2024-05-13 |||||||
46+
| gpt-4o-2024-08-06 |||||||
4647
| gpt-4-turbo |||||||
4748
| gpt-4-turbo-2024-04-09 |||||||
4849
| gpt-4-0125-preview |||||||

src/models.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const models = {
1414
'gpt-4o',
1515
'gpt-4o-mini',
1616
'gpt-4o-2024-05-13',
17+
'gpt-4o-2024-08-06',
1718
'gpt-4-turbo',
1819
'gpt-4-turbo-2024-04-09',
1920
'gpt-4-0125-preview',
@@ -39,6 +40,7 @@ export const models = {
3940
'gpt-4o',
4041
'gpt-4o-mini',
4142
'gpt-4o-2024-05-13',
43+
'gpt-4o-2024-08-06',
4244
'gpt-4-turbo',
4345
'gpt-4-turbo-2024-04-09',
4446
'gpt-4-0125-preview',
@@ -63,6 +65,7 @@ export const models = {
6365
'gpt-4o',
6466
'gpt-4o-mini',
6567
'gpt-4o-2024-05-13',
68+
'gpt-4o-2024-08-06',
6669
'gpt-4-turbo',
6770
'gpt-4-turbo-2024-04-09',
6871
'gpt-4-0125-preview',
@@ -77,6 +80,7 @@ export const models = {
7780
'gpt-4o',
7881
'gpt-4o-mini',
7982
'gpt-4o-2024-05-13',
83+
'gpt-4o-2024-08-06',
8084
'gpt-4-turbo',
8185
'gpt-4-turbo-2024-04-09',
8286
'gpt-4-0125-preview',
@@ -88,6 +92,7 @@ export const models = {
8892
'gpt-4o',
8993
'gpt-4o-mini',
9094
'gpt-4o-2024-05-13',
95+
'gpt-4o-2024-08-06',
9196
'gpt-4-turbo',
9297
'gpt-4-turbo-2024-04-09',
9398
'gpt-4-turbo-preview',

0 commit comments

Comments
 (0)