Skip to content

Commit 98807ec

Browse files
authored
Feat: Add support for gpt-4 models (#157)
1 parent 1a123fe commit 98807ec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

completion.go

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ var (
1717
// GPT3 Models are designed for text-based tasks. For code-specific
1818
// tasks, please refer to the Codex series of models.
1919
const (
20+
GPT432K0314 = "gpt-4-32k-0314"
21+
GPT432K = "gpt-4-32k"
22+
GPT40314 = "gpt-4-0314"
23+
GPT4 = "gpt-4"
2024
GPT3Dot5Turbo0301 = "gpt-3.5-turbo-0301"
2125
GPT3Dot5Turbo = "gpt-3.5-turbo"
2226
GPT3TextDavinci003 = "text-davinci-003"

0 commit comments

Comments
 (0)