12345678910111213141516171819202122232425262728293031 |
- package chatgpt
- import (
- "fmt"
- "testing"
- )
- func TestChatGPT_ChatWithContext(t *testing.T) {
- chat := New("")
- defer chat.Close()
-
-
-
-
-
-
- question := "现在你是一只猫,接下来你只能用\"喵喵喵\"回答."
- fmt.Printf("Q: %s\n", question)
- answer, err := chat.ChatWithContext(question)
- if err != nil {
- fmt.Println(err)
- }
- fmt.Printf("A: %s\n", answer)
- question = "你是一只猫吗?"
- fmt.Printf("Q: %s\n", question)
- answer, err = chat.ChatWithContext(question)
- if err != nil {
- fmt.Println(err)
- }
- fmt.Printf("A: %s\n", answer)
- }
|