sokoow 1 жил өмнө
parent
commit
faa31c44c8
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      context.go

+ 1 - 1
context.go

@@ -104,7 +104,7 @@ func (c *ChatGPT) ChatWithContext(question string) (answer string, err error) {
 		return "", OverMaxTextLength
 		return "", OverMaxTextLength
 	}
 	}
 	req := gogpt.CompletionRequest{
 	req := gogpt.CompletionRequest{
-		Model:            gogpt.GPT3TextDavinci003,
+		Model:            gogpt.GPT3Dot5Turbo,
 		MaxTokens:        c.maxAnswerLen,
 		MaxTokens:        c.maxAnswerLen,
 		Prompt:           prompt,
 		Prompt:           prompt,
 		Temperature:      0.9,
 		Temperature:      0.9,