Stop parameter of OpenAIRequest changed to String Array (#153)

swagger
Dave 1 year ago committed by GitHub
parent 220d6fd59b
commit 0b226ac027
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      api/openai.go

@ -63,7 +63,7 @@ type OpenAIRequest struct {
Instruction string `json:"instruction" yaml:"instruction"` Instruction string `json:"instruction" yaml:"instruction"`
Input string `json:"input" yaml:"input"` Input string `json:"input" yaml:"input"`
Stop string `json:"stop" yaml:"stop"` Stop []string `json:"stop" yaml:"stop"`
// Messages is read only by chat/completion API calls // Messages is read only by chat/completion API calls
Messages []Message `json:"messages" yaml:"messages"` Messages []Message `json:"messages" yaml:"messages"`
@ -117,8 +117,8 @@ func updateConfig(config *Config, input *OpenAIRequest) {
config.Maxtokens = input.Maxtokens config.Maxtokens = input.Maxtokens
} }
if input.Stop != "" { if len(input.Stop) != 0 {
config.StopWords = append(config.StopWords, input.Stop) config.StopWords = append(config.StopWords, input.Stop...)
} }
if input.RepeatPenalty != 0 { if input.RepeatPenalty != 0 {

Loading…
Cancel
Save