sokoow преди 1 година
родител
ревизия
3fc837392a
променени са 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
 	}
 	req := gogpt.CompletionRequest{
-		Model:            gogpt.GPT3Dot5Turbo,
+		Model:            gogpt.GPT3Dot5TurboInstruct,
 		MaxTokens:        c.maxAnswerLen,
 		Prompt:           prompt,
 		Temperature:      0.9,