Skip to content

Commit

Permalink
feat: add GPT4Turbo and GPT4Turbo20240409 (#703)
Browse files Browse the repository at this point in the history
  • Loading branch information
liushuangls committed Apr 11, 2024
1 parent 187f416 commit e0d0801
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 @@ -22,6 +22,8 @@ const (
GPT432K = "gpt-4-32k"
GPT40613 = "gpt-4-0613"
GPT40314 = "gpt-4-0314"
GPT4Turbo = "gpt-4-turbo"
GPT4Turbo20240409 = "gpt-4-turbo-2024-04-09"
GPT4Turbo0125 = "gpt-4-0125-preview"
GPT4Turbo1106 = "gpt-4-1106-preview"
GPT4TurboPreview = "gpt-4-turbo-preview"
Expand Down Expand Up @@ -84,6 +86,8 @@ var disabledModelsForEndpoints = map[string]map[string]bool{
GPT4VisionPreview: true,
GPT4Turbo1106: true,
GPT4Turbo0125: true,
GPT4Turbo: true,
GPT4Turbo20240409: true,
GPT40314: true,
GPT40613: true,
GPT432K: true,
Expand Down

0 comments on commit e0d0801

Please sign in to comment.