Skip to content

Commit

Permalink
Add support for gpt-4o-2024-08-06 (#812)
Browse files Browse the repository at this point in the history
* feat: Add GPT-4o Mini model support

* feat: Add GPT-4o-2024-08-06 model support
  • Loading branch information
danielchalef authored Aug 7, 2024
1 parent 581da2f commit dbe726c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const (
GPT40314 = "gpt-4-0314"
GPT4o = "gpt-4o"
GPT4o20240513 = "gpt-4o-2024-05-13"
GPT4o20240806 = "gpt-4o-2024-08-06"
GPT4oMini = "gpt-4o-mini"
GPT4oMini20240718 = "gpt-4o-mini-2024-07-18"
GPT4Turbo = "gpt-4-turbo"
Expand Down Expand Up @@ -91,6 +92,7 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
GPT4: true,
GPT4o: true,
GPT4o20240513: true,
GPT4o20240806: true,
GPT4oMini: true,
GPT4oMini20240718: true,
GPT4TurboPreview: true,
Expand Down

0 comments on commit dbe726c

Please sign in to comment.