You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: completion.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ import (
7
7
)
8
8
9
9
var (
10
-
ErrO1MaxTokensDeprecated=errors.New("this model is not supported MaxTokens, please use MaxCompletionsTokens")//nolint:lll
10
+
ErrO1MaxTokensDeprecated=errors.New("this model is not supported MaxTokens, please use MaxCompletionTokens") //nolint:lll
11
11
ErrCompletionUnsupportedModel=errors.New("this model is not supported with this method, please use CreateChatCompletion client method instead") //nolint:lll
12
12
ErrCompletionStreamNotSupported=errors.New("streaming is not supported with this method, please use CreateCompletionStream") //nolint:lll
13
13
ErrCompletionRequestPromptTypeNotSupported=errors.New("the type of CompletionRequest.Prompt only supports string and []string") //nolint:lll
0 commit comments