Skip to content

Commit dd2af38

Browse files
authored
Merge pull request #7 from chopper985/feat/add-gpt-4-turbo-model
Feat: Add gpt 4 turbo model
2 parents 8fb4f53 + f98a49b commit dd2af38

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/src/models/gpt_model.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
enum GPTModel {
22
gpt4("gpt-4", 8192, isChatCompletion: true),
3+
gpt4turbo("gpt-4-turbo-2024-04-09", 128000, isChatCompletion: true),
34
gpt4v0613("gpt-4-0613", 8192, isChatCompletion: true),
45
gpt4p32k("gpt-4-32k", 32768, isChatCompletion: true),
56
gpt4p32kv0613("gpt-4-32k-0613", 32768, isChatCompletion: true),

0 commit comments

Comments
 (0)