-
Notifications
You must be signed in to change notification settings - Fork 11
/
ernie_bot_test.go
74 lines (70 loc) · 1.33 KB
/
ernie_bot_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package go_ernie
import (
"context"
"errors"
"io"
"testing"
)
func TestClient_CreateErnieBotChatCompletion(t *testing.T) {
client := NewClient("")
request := ErnieBotRequest{
Messages: []ChatCompletionMessage{
{
Role: "user",
Content: "南昌的天气怎么样",
},
},
Stream: false,
Functions: []ErnieFunction{
{
Name: "get_weather",
Description: "获取天气信息",
Parameters: map[string]interface{}{
"type": "object",
"properties": map[string]interface{}{
"location": map[string]interface{}{
"type": "string",
"description": "要查询的城市地址",
},
},
},
},
},
}
response, err := client.CreateErnieBotChatCompletion(context.Background(), request)
if err != nil {
t.Error(err)
return
}
t.Log(response)
}
func TestName(t *testing.T) {
client := NewClient("xxx")
request := ErnieBotRequest{
Messages: []ChatCompletionMessage{
{
Role: "user",
Content: "Hello",
},
},
Stream: true,
}
response, err := client.CreateErnieBotChatCompletionStream(context.Background(), request)
if err != nil {
t.Error(err)
return
}
defer response.Close()
for {
recv, err := response.Recv()
if errors.Is(err, io.EOF) {
t.Log("EOF")
return
}
if err != nil {
t.Error(err)
return
}
t.Log(recv)
}
}