Skip to content

Commit dc2b697

Browse files
committed
enable streaming for gpt3 series of models
1 parent 2446f08 commit dc2b697

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

completion.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ const (
7474

7575
var disabledModelsForEndpoints = map[string]map[string]bool{
7676
"/completions": {
77-
GPT3Dot5Turbo: true,
78-
GPT3Dot5Turbo0301: true,
79-
GPT3Dot5Turbo0613: true,
80-
GPT3Dot5Turbo1106: true,
81-
GPT3Dot5Turbo0125: true,
82-
GPT3Dot5Turbo16K: true,
83-
GPT3Dot5Turbo16K0613: true,
77+
GPT3Dot5Turbo: false,
78+
GPT3Dot5Turbo0301: false,
79+
GPT3Dot5Turbo0613: false,
80+
GPT3Dot5Turbo1106: false,
81+
GPT3Dot5Turbo0125: false,
82+
GPT3Dot5Turbo16K: false,
83+
GPT3Dot5Turbo16K0613: false,
8484
GPT4: true,
8585
GPT4TurboPreview: true,
8686
GPT4VisionPreview: true,

0 commit comments

Comments
 (0)