Skip to content

Commit

Permalink
Feat: Add support for gpt-4 models (sashabaranov#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
jooyyy authored Mar 15, 2023
1 parent 1a123fe commit 98807ec
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 @@ -17,6 +17,10 @@ var (
// GPT3 Models are designed for text-based tasks. For code-specific
// tasks, please refer to the Codex series of models.
const (
GPT432K0314 = "gpt-4-32k-0314"
GPT432K = "gpt-4-32k"
GPT40314 = "gpt-4-0314"
GPT4 = "gpt-4"
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
GPT3Dot5Turbo = "gpt-3.5-turbo"
GPT3TextDavinci003 = "text-davinci-003"
Expand Down

0 comments on commit 98807ec

Please sign in to comment.