Skip to content

Commit

Permalink
feat: Add GPT-4o Mini model support (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalef authored Jul 19, 2024
1 parent 3e47e6f commit 27c1c56
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const (
GPT40314 = "gpt-4-0314"
GPT4o = "gpt-4o"
GPT4o20240513 = "gpt-4o-2024-05-13"
GPT4oMini = "gpt-4o-mini"
GPT4oMini20240718 = "gpt-4o-mini-2024-07-18"
GPT4Turbo = "gpt-4-turbo"
GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09"
GPT4Turbo0125 = "gpt-4-0125-preview"
Expand Down Expand Up @@ -89,6 +91,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
GPT4: true,
GPT4o: true,
GPT4o20240513: true,
GPT4oMini: true,
GPT4oMini20240718: true,
GPT4TurboPreview: true,
GPT4VisionPreview: true,
GPT4Turbo1106: true,
Expand Down

0 comments on commit 27c1c56

Please sign in to comment.