-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.go
More file actions
301 lines (261 loc) · 7.49 KB
/
Copy pathclient.go
File metadata and controls
301 lines (261 loc) · 7.49 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package gosparkclient
import (
"context"
"encoding/json"
"github.com/gorilla/websocket"
"net/http"
)
type SparkClient struct {
config *Config
transport *http.Transport
}
func NewSparkClient(opts ...ConfigOption) (*SparkClient, error) {
config := DefaultConfig()
for _, opt := range opts {
opt(config)
}
if err := validateConfig(config); err != nil {
return nil, newConfigError("invalid configuration", err)
}
return &SparkClient{
config: config,
transport: defaultTransport(config.Timeout),
}, nil
}
// ChatWithCallback initiates a chat session and calls the callback function for each response
func (c *SparkClient) ChatWithCallback(ctx context.Context, req *SparkChatRequest, callback ChatCallback) error {
dialer := websocket.Dialer{
HandshakeTimeout: c.config.Timeout,
NetDialContext: c.transport.DialContext,
Proxy: c.transport.Proxy,
}
authURL := c.assembleAuthURL("GET", c.config.HostURL)
conn, _, err := dialer.DialContext(ctx, authURL, nil)
if err != nil {
return newConnectionError("failed to establish WebSocket connection", err)
}
defer conn.Close()
if err := conn.WriteJSON(c.genReqJson(req)); err != nil {
return newRequestError("failed to send message", err)
}
for {
select {
case <-ctx.Done():
return newRequestError("request cancelled", ctx.Err())
default:
var response SparkAPIResponse
_, msg, err := conn.ReadMessage()
if err != nil {
return newWebSocketError("failed to read message", err)
}
if err := json.Unmarshal(msg, &response); err != nil {
return newResponseError("failed to parse response", err)
}
if response.Header.Code != 0 {
return newResponseError(response.Header.Message, nil)
}
// Call the callback function with the response
if callback != nil {
callback(&response)
}
if response.Payload.Choices.Status == 2 {
return nil
}
}
}
}
func (c *SparkClient) Chat(ctx context.Context, req *SparkChatRequest) (*SparkAPIResponse, error) {
dialer := websocket.Dialer{
HandshakeTimeout: c.config.Timeout,
NetDialContext: c.transport.DialContext,
Proxy: c.transport.Proxy,
}
authURL := c.assembleAuthURL("GET", c.config.HostURL)
conn, _, err := dialer.DialContext(ctx, authURL, nil)
if err != nil {
return nil, newConnectionError("failed to establish WebSocket connection", err)
}
defer conn.Close()
if err := conn.WriteJSON(c.genReqJson(req)); err != nil {
return nil, newRequestError("failed to send message", err)
}
var finalResponse *SparkAPIResponse
var answer string
for {
select {
case <-ctx.Done():
return nil, newRequestError("request cancelled", ctx.Err())
default:
var response SparkAPIResponse
_, msg, err := conn.ReadMessage()
if err != nil {
return nil, newWebSocketError("failed to read message", err)
}
if err := json.Unmarshal(msg, &response); err != nil {
return nil, newResponseError("failed to parse response", err)
}
if response.Header.Code != 0 {
return nil, newResponseError(response.Header.Message, nil)
}
if len(response.Payload.Choices.Text) > 0 {
answer += response.Payload.Choices.Text[0].Content
}
if response.Payload.Choices.Status == 2 {
if len(response.Payload.Choices.Text) > 0 {
response.Payload.Choices.Text[0].Content = answer
}
finalResponse = &response
break
}
}
if finalResponse != nil {
break
}
}
return finalResponse, nil
}
func (c *SparkClient) ChatSimple(ctx context.Context, prompt string) (*SparkAPIResponse, error) {
req := &SparkChatRequest{
Messages: []SparkMessage{
{
Role: "user",
Content: prompt,
},
},
}
return c.Chat(ctx, req)
}
func (c *SparkClient) Embedding(ctx context.Context, query, domain string) (*SparkAPIEmbResponse, error) {
dialer := websocket.Dialer{
HandshakeTimeout: c.config.Timeout,
NetDialContext: c.transport.DialContext,
Proxy: c.transport.Proxy,
}
authURL := c.assembleAuthURL("GET", c.config.EMBURL)
conn, _, err := dialer.DialContext(ctx, authURL, nil)
if err != nil {
return nil, newConnectionError("failed to establish WebSocket connection", err)
}
defer conn.Close()
req := c.getEmbeddingRequest(query, domain)
if err := conn.WriteJSON(req); err != nil {
return nil, newRequestError("failed to send embedding request", err)
}
_, message, err := conn.ReadMessage()
if err != nil {
return nil, newWebSocketError("failed to read message", err)
}
var response SparkAPIEmbResponse
if err := json.Unmarshal(message, &response); err != nil {
return nil, newResponseError("failed to parse response", err)
}
if response.Header.Code != 0 {
return nil, newResponseError(response.Header.Message, nil)
}
return &response, nil
}
func (c *SparkClient) WithNewConfig(opts ...ConfigOption) (*SparkClient, error) {
newConfig := *c.config
for _, opt := range opts {
opt(&newConfig)
}
if err := validateConfig(&newConfig); err != nil {
return nil, newConfigError("invalid configuration", err)
}
return &SparkClient{
config: &newConfig,
transport: defaultTransport(newConfig.Timeout),
}, nil
}
func (c *SparkClient) genReqJson(req *SparkChatRequest) *SparkAPIRequest {
apiReq := &SparkAPIRequest{}
apiReq.Header.AppID = c.config.AppID
apiReq.Header.UID = c.config.UID
apiReq.Parameter.Chat.Domain = c.config.Domain
apiReq.Parameter.Chat.Temperature = req.Temperature
apiReq.Parameter.Chat.TopK = req.TopK
apiReq.Parameter.Chat.MaxTokens = req.MaxTokens
apiReq.Parameter.Chat.Auditing = c.config.Auditing
apiReq.Parameter.Chat.QuestionType = req.QuestionType
if req.System != "" {
apiReq.Payload.Message.Text = append(apiReq.Payload.Message.Text, SparkMessage{
Role: "system",
Content: req.System,
})
}
apiReq.Payload.Message.Text = append(apiReq.Payload.Message.Text, req.Messages...)
if req.Functions != nil && len(req.Functions) > 0 {
apiReq.Functions = &struct {
Text json.RawMessage `json:"text,omitempty"`
}{
Text: req.Functions,
}
}
return apiReq
}
func (c *SparkClient) getEmbeddingRequest(query, domain string) *SparkAPIEmbRequest {
return &SparkAPIEmbRequest{
Header: struct {
AppID string `json:"app_id"`
UID string `json:"uid"`
Status int `json:"status"`
}{
AppID: c.config.AppID,
UID: c.config.UID,
Status: 3,
},
Parameter: struct {
Emb struct {
Domain string `json:"domain"`
Feature struct {
Encoding string `json:"encoding"`
Compress string `json:"compress"`
Format string `json:"format"`
} `json:"feature"`
} `json:"emb"`
}{
Emb: struct {
Domain string `json:"domain"`
Feature struct {
Encoding string `json:"encoding"`
Compress string `json:"compress"`
Format string `json:"format"`
} `json:"feature"`
}{
Domain: domain,
Feature: struct {
Encoding string `json:"encoding"`
Compress string `json:"compress"`
Format string `json:"format"`
}{
Encoding: "utf8",
Compress: "raw",
Format: "plain",
},
},
},
Payload: struct {
Message struct {
Encoding string `json:"encoding"`
Compress string `json:"compress"`
Format string `json:"format"`
Status int `json:"status"`
Text string `json:"text"`
} `json:"message"`
}{
Message: struct {
Encoding string `json:"encoding"`
Compress string `json:"compress"`
Format string `json:"format"`
Status int `json:"status"`
Text string `json:"text"`
}{
Encoding: "utf8",
Compress: "raw",
Format: "json",
Status: 3,
Text: query,
},
},
}
}