-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler.go
More file actions
416 lines (362 loc) · 10.2 KB
/
handler.go
File metadata and controls
416 lines (362 loc) · 10.2 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package main
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"io"
"log/slog"
"net/http"
"strings"
"time"
)
type convertOpts struct {
modelMap map[string]string
omitFields []string
addFields map[string]string
}
func newConvertHandler(backendURL string, provider *tokenProvider, opts convertOpts, fallback http.Handler) http.Handler {
backendURL = strings.TrimRight(backendURL, "/")
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost || r.URL.Path != "/v1/chat/completions" {
fallback.ServeHTTP(w, r)
return
}
start := time.Now()
body, err := io.ReadAll(r.Body)
r.Body.Close()
if err != nil {
http.Error(w, "failed to read request body", http.StatusBadRequest)
return
}
var oaiReq openAIRequest
if err := json.Unmarshal(body, &oaiReq); err != nil {
slog.Error("invalid request body", "error", err)
http.Error(w, "invalid JSON request", http.StatusBadRequest)
return
}
antReq := convertRequest(oaiReq, opts.modelMap)
slog.Info("request",
"model", oaiReq.Model,
"mapped_model", antReq.Model,
"stream", antReq.Stream,
"messages", len(oaiReq.Messages),
"max_tokens", antReq.MaxTokens,
)
antBody, err := json.Marshal(antReq)
if err != nil {
http.Error(w, "failed to marshal request", http.StatusInternalServerError)
return
}
antBody, err = applyFieldOverrides(antBody, opts.omitFields, opts.addFields)
if err != nil {
slog.Error("failed to apply field overrides", "error", err)
http.Error(w, "failed to process request", http.StatusInternalServerError)
return
}
if antReq.Stream {
handleStream(w, r, backendURL, provider, antBody, start)
} else {
handleNonStream(w, r, backendURL, provider, antBody, start)
}
})
}
func doAnthropicRequest(r *http.Request, backendURL string, provider *tokenProvider, body []byte) (*http.Response, error) {
endpoint := backendURL
req, err := http.NewRequestWithContext(r.Context(), http.MethodPost, endpoint, bytes.NewReader(body))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("anthropic-version", "2023-06-01")
token, err := provider.ensureToken(r.Context())
if err != nil {
return nil, fmt.Errorf("token error: %w", err)
}
req.Header.Set("x-api-key", token)
req.Header.Set("Authorization", "Bearer "+token)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
// Retry once on 401
if resp.StatusCode == http.StatusUnauthorized && provider.refresh != nil {
resp.Body.Close()
slog.Warn("received 401, refreshing token")
newToken, err := provider.forceRefresh(r.Context())
if err != nil {
return nil, fmt.Errorf("token refresh error: %w", err)
}
req, err = http.NewRequestWithContext(r.Context(), http.MethodPost, endpoint, bytes.NewReader(body))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("anthropic-version", "2023-06-01")
req.Header.Set("x-api-key", newToken)
req.Header.Set("Authorization", "Bearer "+newToken)
resp, err = client.Do(req)
if err != nil {
return nil, err
}
}
return resp, nil
}
func handleNonStream(w http.ResponseWriter, r *http.Request, backendURL string, provider *tokenProvider, antBody []byte, start time.Time) {
resp, err := doAnthropicRequest(r, backendURL, provider, antBody)
if err != nil {
slog.Error("backend request failed", "error", err)
http.Error(w, "proxy error", http.StatusBadGateway)
return
}
defer resp.Body.Close()
respBody, err := io.ReadAll(resp.Body)
if err != nil {
slog.Error("failed to read backend response", "error", err)
http.Error(w, "proxy error", http.StatusBadGateway)
return
}
if resp.StatusCode != http.StatusOK {
slog.Error("backend error", "status", resp.StatusCode, "body", string(respBody))
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(resp.StatusCode)
w.Write(respBody)
return
}
var antResp anthropicResponse
if err := json.Unmarshal(respBody, &antResp); err != nil {
slog.Error("failed to decode backend response", "error", err)
http.Error(w, "proxy error", http.StatusBadGateway)
return
}
oaiResp := convertResponse(antResp)
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(oaiResp)
slog.Info("response",
"status", resp.StatusCode,
"model", antResp.Model,
"stop_reason", antResp.StopReason,
"input_tokens", antResp.Usage.InputTokens,
"output_tokens", antResp.Usage.OutputTokens,
"duration", time.Since(start).Round(time.Millisecond),
)
}
func handleStream(w http.ResponseWriter, r *http.Request, backendURL string, provider *tokenProvider, antBody []byte, start time.Time) {
resp, err := doAnthropicRequest(r, backendURL, provider, antBody)
if err != nil {
slog.Error("backend stream request failed", "error", err)
http.Error(w, "proxy error", http.StatusBadGateway)
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
respBody, _ := io.ReadAll(resp.Body)
slog.Error("backend stream error", "status", resp.StatusCode, "body", string(respBody))
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(resp.StatusCode)
w.Write(respBody)
return
}
w.Header().Set("Content-Type", "text/event-stream")
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Connection", "keep-alive")
flusher, ok := w.(http.Flusher)
if !ok {
http.Error(w, "streaming not supported", http.StatusInternalServerError)
return
}
state := &streamState{
created: time.Now().Unix(),
}
scanner := bufio.NewScanner(resp.Body)
var currentEvent string
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, "event: ") {
currentEvent = strings.TrimPrefix(line, "event: ")
continue
}
if strings.HasPrefix(line, "data: ") {
data := strings.TrimPrefix(line, "data: ")
chunks := state.processEvent(currentEvent, []byte(data))
for _, chunk := range chunks {
raw, _ := json.Marshal(chunk)
fmt.Fprintf(w, "data: %s\n\n", raw)
flusher.Flush()
}
currentEvent = ""
continue
}
}
fmt.Fprintf(w, "data: [DONE]\n\n")
flusher.Flush()
slog.Info("stream complete",
"model", state.model,
"duration", time.Since(start).Round(time.Millisecond),
)
}
type streamState struct {
id string
model string
created int64
toolCallIndex int
currentBlockType string
}
func (s *streamState) processEvent(eventType string, data []byte) []openAIStreamChunk {
switch eventType {
case "message_start":
var evt struct {
Message struct {
ID string `json:"id"`
Model string `json:"model"`
} `json:"message"`
}
json.Unmarshal(data, &evt)
s.id = fmt.Sprintf("chatcmpl-%s", evt.Message.ID)
s.model = evt.Message.Model
s.toolCallIndex = 0
return []openAIStreamChunk{{
ID: s.id,
Object: "chat.completion.chunk",
Created: s.created,
Model: s.model,
Choices: []openAIStreamChoice{{
Index: 0,
Delta: openAIStreamDelta{Role: "assistant"},
}},
}}
case "content_block_start":
var evt struct {
Index int `json:"index"`
ContentBlock struct {
Type string `json:"type"`
ID string `json:"id"`
Name string `json:"name"`
} `json:"content_block"`
}
json.Unmarshal(data, &evt)
s.currentBlockType = evt.ContentBlock.Type
if evt.ContentBlock.Type == "tool_use" {
chunk := openAIStreamChunk{
ID: s.id,
Object: "chat.completion.chunk",
Created: s.created,
Model: s.model,
Choices: []openAIStreamChoice{{
Index: 0,
Delta: openAIStreamDelta{
ToolCalls: []openAIToolCallChunk{{
Index: s.toolCallIndex,
ID: evt.ContentBlock.ID,
Type: "function",
Function: &openAIFnChunk{
Name: evt.ContentBlock.Name,
Arguments: "",
},
}},
},
}},
}
return []openAIStreamChunk{chunk}
}
return nil
case "content_block_delta":
var evt struct {
Index int `json:"index"`
Delta struct {
Type string `json:"type"`
Text string `json:"text"`
PartialJSON string `json:"partial_json"`
} `json:"delta"`
}
json.Unmarshal(data, &evt)
if evt.Delta.Type == "text_delta" {
text := evt.Delta.Text
return []openAIStreamChunk{{
ID: s.id,
Object: "chat.completion.chunk",
Created: s.created,
Model: s.model,
Choices: []openAIStreamChoice{{
Index: 0,
Delta: openAIStreamDelta{Content: &text},
}},
}}
}
if evt.Delta.Type == "input_json_delta" {
return []openAIStreamChunk{{
ID: s.id,
Object: "chat.completion.chunk",
Created: s.created,
Model: s.model,
Choices: []openAIStreamChoice{{
Index: 0,
Delta: openAIStreamDelta{
ToolCalls: []openAIToolCallChunk{{
Index: s.toolCallIndex,
Function: &openAIFnChunk{
Arguments: evt.Delta.PartialJSON,
},
}},
},
}},
}}
}
return nil
case "content_block_stop":
if s.currentBlockType == "tool_use" {
s.toolCallIndex++
}
s.currentBlockType = ""
return nil
case "message_delta":
var evt struct {
Delta struct {
StopReason string `json:"stop_reason"`
} `json:"delta"`
Usage *anthropicUsage `json:"usage"`
}
json.Unmarshal(data, &evt)
reason := mapStopReason(evt.Delta.StopReason)
chunk := openAIStreamChunk{
ID: s.id,
Object: "chat.completion.chunk",
Created: s.created,
Model: s.model,
Choices: []openAIStreamChoice{{
Index: 0,
Delta: openAIStreamDelta{},
FinishReason: &reason,
}},
}
if evt.Usage != nil {
chunk.Usage = &openAIUsage{
PromptTokens: evt.Usage.InputTokens,
CompletionTokens: evt.Usage.OutputTokens,
TotalTokens: evt.Usage.InputTokens + evt.Usage.OutputTokens,
}
}
return []openAIStreamChunk{chunk}
case "message_stop", "ping":
return nil
default:
return nil
}
}
func applyFieldOverrides(body []byte, omit []string, add map[string]string) ([]byte, error) {
if len(omit) == 0 && len(add) == 0 {
return body, nil
}
var m map[string]any
if err := json.Unmarshal(body, &m); err != nil {
return nil, err
}
for _, field := range omit {
delete(m, field)
}
for k, v := range add {
m[k] = v
}
return json.Marshal(m)
}