Kaynağa Gözat

Update 'context.go'

sokoow 1 yıl önce
ebeveyn
işleme
3fc837392a
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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,