Skip to content

Commit dbe726c

Browse files
authored
Add support for gpt-4o-2024-08-06 (sashabaranov#812)
* feat: Add GPT-4o Mini model support * feat: Add GPT-4o-2024-08-06 model support
1 parent 581da2f commit dbe726c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

completion.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const (
2424
GPT40314 = "gpt-4-0314"
2525
GPT4o = "gpt-4o"
2626
GPT4o20240513 = "gpt-4o-2024-05-13"
27+
GPT4o20240806 = "gpt-4o-2024-08-06"
2728
GPT4oMini = "gpt-4o-mini"
2829
GPT4oMini20240718 = "gpt-4o-mini-2024-07-18"
2930
GPT4Turbo = "gpt-4-turbo"
@@ -91,6 +92,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
9192
GPT4: true,
9293
GPT4o: true,
9394
GPT4o20240513: true,
95+
GPT4o20240806: true,
9496
GPT4oMini: true,
9597
GPT4oMini20240718: true,
9698
GPT4TurboPreview: true,

0 commit comments

Comments
 (0)