-
Notifications
You must be signed in to change notification settings - Fork 5
/
text_generation_test.go
115 lines (102 loc) · 2.89 KB
/
text_generation_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package hfapigo_test
import (
"encoding/json"
"testing"
"github.com/Kardbord/hfapigo/v3"
"github.com/google/go-cmp/cmp"
)
func TestMarshalUnMarshalTextGenerationRequest(t *testing.T) {
// No options
{
tgExpected := hfapigo.TextGenerationRequest{
Input: "The answer to the universe is",
}
jsonBuf, err := json.Marshal(tgExpected)
if err != nil {
t.Fatal(err)
}
tgActual := hfapigo.TextGenerationRequest{}
err = json.Unmarshal(jsonBuf, &tgActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(tgExpected, tgActual) {
t.Fatalf("Expected %v, got %v", tgExpected, tgActual)
}
}
// Options
{
tgExpected := hfapigo.TextGenerationRequest{
Input: "The answer to the universe is",
Parameters: *hfapigo.NewTextGenerationParameters().
SetMaxNewTokens(240).
SetReturnFullText(false),
Options: *hfapigo.NewOptions().SetWaitForModel(true),
}
jsonBuf, err := json.Marshal(tgExpected)
if err != nil {
t.Fatal(err)
}
tgActual := hfapigo.TextGenerationRequest{}
err = json.Unmarshal(jsonBuf, &tgActual)
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(tgExpected, tgActual) {
t.Fatalf("Expected %v, got %v", tgExpected, tgActual)
}
}
}
func TestTextGenerationRequest(t *testing.T) {
// Basic request
{
input := "The answer to the universe is"
tgresps, err := hfapigo.SendTextGenerationRequest(hfapigo.RecommendedTextGenerationModel, &hfapigo.TextGenerationRequest{
Input: input,
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err != nil {
t.Fatal(err)
}
if len(tgresps) != 1 {
t.Fatalf("expected 1 response, got %d", len(tgresps))
}
if tgresps[0].GeneratedText == "" {
t.Fatal("expected non-empty generated text")
}
}
// More complicated request
{
input := "There once was a ship that put to sea"
tgresps, err := hfapigo.SendTextGenerationRequest(hfapigo.RecommendedTextGenerationModel, &hfapigo.TextGenerationRequest{
Input: input,
Parameters: *hfapigo.NewTextGenerationParameters().SetRepetitionPenaly(50.235).SetReturnFullText(false).SetDetails(true),
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err != nil {
t.Fatal(err)
}
if len(tgresps) != 1 {
t.Fatalf("expected 1 response, got %d", len(tgresps))
}
if tgresps[0].GeneratedText == "" {
t.Fatal("expected non-empty generated text")
}
if tgresps[0].Details.FinishReason == "" {
t.Fatal("expected non-empty finish reason")
}
}
// Invalid request
{
tgresps, err := hfapigo.SendTextGenerationRequest(hfapigo.RecommendedTextGenerationModel, &hfapigo.TextGenerationRequest{
Parameters: *hfapigo.NewTextGenerationParameters().SetRepetitionPenaly(50.235).SetReturnFullText(false),
Options: *hfapigo.NewOptions().SetWaitForModel(true),
})
if err == nil {
t.Fatal("expected error - invalid request")
}
if tgresps != nil {
t.Fatal("expected nil response - invalid request")
}
}
}