forked from dataleap-labs/llm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenai.go
475 lines (411 loc) · 12.7 KB
/
openai.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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
package llm
import (
"context"
"encoding/json"
"errors"
"fmt"
"io"
"strings"
"github.com/sashabaranov/go-openai"
)
// OpenAILLM implements the LLM interface for OpenAI
type OpenAILLM struct {
client *openai.Client
}
type OpenAIModel string
// NewOpenAILLM creates a new OpenAI LLM client
func NewOpenAILLM(apiKey string) *OpenAILLM {
client := openai.NewClient(apiKey)
return &OpenAILLM{client: client}
}
func NewAzureLLM(apiKey string, azureOpenAIEndpoint string) *OpenAILLM {
// The latest API versions, including previews, can be found here:
// https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#rest-api-versioning
config := openai.DefaultAzureConfig(apiKey, azureOpenAIEndpoint)
config.APIVersion = "2023-05-15" // optional update to latest API version
//If you use a deployment name different from the model name, you can customize the AzureModelMapperFunc function
//config.AzureModelMapperFunc = func(model string) string {
// azureModelMapping := map[string]string{
// "gpt-3.5-turbo":"your gpt-3.5-turbo deployment name",
// }
// return azureModelMapping[model]
//}
client := openai.NewClientWithConfig(config)
return &OpenAILLM{client: client}
}
// convertToOpenAIMessages converts our generic Message type to OpenAI's message type
func convertToOpenAIMessages(messages []InputMessage) []openai.ChatCompletionMessage {
openAIMessages := make([]openai.ChatCompletionMessage, 0, len(messages))
for _, msg := range messages {
var role string
switch msg.Role {
case RoleUser:
role = openai.ChatMessageRoleUser
case RoleAssistant:
role = openai.ChatMessageRoleAssistant
case RoleTool:
role = openai.ChatMessageRoleTool
}
var openAIMsg openai.ChatCompletionMessage
openAIMsg.Role = role
if msg.Role == RoleTool {
openAIMsg.Content = msg.ToolResults[0].Result
openAIMsg.ToolCallID = msg.ToolResults[0].ToolCallID
} else {
openAIMsg.MultiContent = convertOpenAIMessageContent(msg.MultiContent)
openAIMsg.ToolCalls = convertToOpenAIToolsCalls(msg.ToolCalls)
}
openAIMessages = append(openAIMessages, openAIMsg)
}
return openAIMessages
}
func convertOpenAIMessageContent(content []ContentPart) []openai.ChatMessagePart {
multiContent := make([]openai.ChatMessagePart, 0, len(content))
for _, part := range content {
switch part.Type {
case ContentTypeText:
multiContent = append(multiContent, openai.ChatMessagePart{
Type: openai.ChatMessagePartTypeText,
Text: part.Text,
})
case ContentTypeImage:
imageURL := "data:" + part.MediaType + ";base64," + part.Data
multiContent = append(multiContent, openai.ChatMessagePart{
Type: openai.ChatMessagePartTypeImageURL,
ImageURL: &openai.ChatMessageImageURL{
URL: imageURL,
Detail: "high",
},
})
}
}
return multiContent
}
// convertFromOpenAIMessage converts OpenAI's message type to our generic Message type
func convertFromOpenAIMessage(msg openai.ChatCompletionMessage) OutputMessage {
var content string
if len(msg.MultiContent) > 0 {
// Handle multi-content messages
var textParts []string
for _, part := range msg.MultiContent {
if part.Type == openai.ChatMessagePartTypeText {
textParts = append(textParts, part.Text)
}
}
content = strings.Join(textParts, "")
} else {
// Handle regular content
content = msg.Content
}
return OutputMessage{
Role: Role(msg.Role),
Content: content,
ToolCalls: convertFromOpenAIToolCalls(msg.ToolCalls),
}
}
// convertToOpenAITools converts our generic Tool type to OpenAI's tool type
func convertToOpenAITools(tools []Tool) []openai.Tool {
if len(tools) == 0 {
return nil
}
openAITools := make([]openai.Tool, len(tools))
for i, tool := range tools {
def := openai.FunctionDefinition{
Name: tool.Function.Name,
Description: tool.Function.Description,
Parameters: tool.Function.Parameters,
}
openAITools[i] = openai.Tool{
Type: openai.ToolTypeFunction,
Function: &def,
}
}
return openAITools
}
func convertToOpenAIToolsCalls(tools []ToolCall) []openai.ToolCall {
if len(tools) == 0 {
return nil
}
openAITools := make([]openai.ToolCall, len(tools))
for i, tool := range tools {
def := openai.FunctionCall{
Name: tool.Function.Name,
Arguments: tool.Function.Arguments,
}
openAITools[i] = openai.ToolCall{
ID: tool.ID,
Type: openai.ToolTypeFunction,
Function: def,
}
}
return openAITools
}
// convertFromOpenAIToolCalls converts OpenAI's tool calls to our generic type
func convertFromOpenAIToolCalls(toolCalls []openai.ToolCall) []ToolCall {
if len(toolCalls) == 0 {
return nil
}
calls := make([]ToolCall, len(toolCalls))
for i, call := range toolCalls {
toolfunc := ToolCallFunction{
Name: call.Function.Name,
Arguments: call.Function.Arguments,
}
calls[i] = ToolCall{
ID: call.ID,
Type: string(call.Type),
Function: toolfunc,
}
}
return calls
}
// CreateChatCompletion implements the LLM interface for OpenAI
func (o *OpenAILLM) CreateChatCompletion(ctx context.Context, req ChatCompletionRequest) (ChatCompletionResponse, error) {
// check if model is compatible with OpenAI
if !o.isSupported(req.Model) {
return ChatCompletionResponse{}, fmt.Errorf("model %s is not available", req.Model)
}
topP := float32(1)
if req.TopP != nil {
topP = *req.TopP
}
// Set system prompt if provided
var messages []openai.ChatCompletionMessage
if req.SystemPrompt != nil {
messages = append(messages, openai.ChatCompletionMessage{
Role: openai.ChatMessageRoleSystem,
Content: *req.SystemPrompt,
})
}
inputMessages := convertToOpenAIMessages(req.Messages)
messages = append(messages, inputMessages...)
openAIReq := openai.ChatCompletionRequest{
Model: string(req.Model), // TODO: convert model name to OpenAI model name
Messages: messages,
Temperature: req.Temperature,
N: 1,
TopP: topP,
Stop: []string{},
Tools: convertToOpenAITools(req.Tools),
Stream: false,
MaxCompletionTokens: req.MaxTokens,
}
if req.JSONMode {
openAIReq.ResponseFormat = &openai.ChatCompletionResponseFormat{
Type: openai.ChatCompletionResponseFormatTypeJSONObject,
}
}
if req.Model == ModelO3Mini {
openAIReq.ReasoningEffort = "high"
}
resp, err := o.client.CreateChatCompletion(ctx, openAIReq)
if err != nil {
return ChatCompletionResponse{}, err
}
choices := make([]Choice, len(resp.Choices))
for i, c := range resp.Choices {
msg := convertFromOpenAIMessage(c.Message)
msg.ToolCalls = convertFromOpenAIToolCalls(c.Message.ToolCalls)
finishReason, err := convertFromOpenAIFinishReason(c.FinishReason)
if err != nil {
return ChatCompletionResponse{}, err
}
choices[i] = Choice{
Index: c.Index,
Message: msg,
FinishReason: finishReason,
}
}
return ChatCompletionResponse{
ID: resp.ID,
Choices: choices,
Usage: Usage{
PromptTokens: resp.Usage.PromptTokens,
CompletionTokens: resp.Usage.CompletionTokens,
TotalTokens: resp.Usage.TotalTokens,
},
}, nil
}
func (o *OpenAILLM) isSupported(model Model) bool {
switch model {
case ModelO3Mini:
return true
case ModelGPT4o:
return true
case ModelGPT4oMini:
return true
default:
return false
}
}
// openAIStreamWrapper wraps the OpenAI stream
type openAIStreamWrapper struct {
stream *openai.ChatCompletionStream
currentToolCall *ToolCall
toolCallBuffer map[string]*ToolCall
}
func newOpenAIStreamWrapper(stream *openai.ChatCompletionStream) *openAIStreamWrapper {
return &openAIStreamWrapper{
stream: stream,
toolCallBuffer: make(map[string]*ToolCall),
}
}
func (w *openAIStreamWrapper) Recv() (ChatCompletionResponse, error) {
resp, err := w.stream.Recv()
if err != nil {
if err == io.EOF {
return ChatCompletionResponse{}, err
}
var openAIErr *openai.APIError
if errors.As(err, &openAIErr) {
return ChatCompletionResponse{}, fmt.Errorf("OpenAI API error: %s - %s", openAIErr.Code, openAIErr.Message)
}
return ChatCompletionResponse{}, fmt.Errorf("stream receive failed: %w", err)
}
choices := make([]Choice, len(resp.Choices))
for i, c := range resp.Choices {
// Handle tool calls in delta
var toolCalls []ToolCall
if len(c.Delta.ToolCalls) > 0 {
toolCalls = make([]ToolCall, 0)
for _, tc := range c.Delta.ToolCalls {
// Get or create tool call buffer
toolCall, exists := w.toolCallBuffer[tc.ID]
if !exists {
if tc.ID == "" {
// Skip empty IDs but accumulate arguments if present
if tc.Function.Arguments != "" && w.currentToolCall != nil {
w.currentToolCall.Function.Arguments += tc.Function.Arguments
// Try to parse the arguments to verify if it's complete JSON
if isValidJSON(w.currentToolCall.Function.Arguments) {
toolCalls = append(toolCalls, *w.currentToolCall)
delete(w.toolCallBuffer, w.currentToolCall.ID)
w.currentToolCall = nil
}
}
continue
}
// Create new tool call
toolCall = &ToolCall{
ID: tc.ID,
Type: string(tc.Type),
Function: ToolCallFunction{
Name: tc.Function.Name,
Arguments: "",
},
}
w.toolCallBuffer[tc.ID] = toolCall
w.currentToolCall = toolCall
}
// Accumulate tool call data
if tc.Function.Name != "" {
toolCall.Function.Name = tc.Function.Name
}
if tc.Function.Arguments != "" {
toolCall.Function.Arguments += tc.Function.Arguments
// Check if we have complete JSON
if isValidJSON(toolCall.Function.Arguments) {
toolCalls = append(toolCalls, *toolCall)
delete(w.toolCallBuffer, tc.ID)
if w.currentToolCall != nil && w.currentToolCall.ID == tc.ID {
w.currentToolCall = nil
}
}
}
}
}
// Create the message with accumulated content
message := OutputMessage{
Role: Role(c.Delta.Role),
Content: c.Delta.Content,
ToolCalls: toolCalls,
}
finishReason, err := convertFromOpenAIFinishReason(c.FinishReason)
if err != nil {
return ChatCompletionResponse{}, err
}
choices[i] = Choice{
Index: c.Index,
Message: message,
FinishReason: finishReason,
}
}
return ChatCompletionResponse{
ID: resp.ID,
Choices: choices,
}, nil
}
// Helper function to check if a string is valid JSON
func isValidJSON(s string) bool {
var js map[string]interface{}
return json.Unmarshal([]byte(s), &js) == nil
}
func convertFromOpenAIFinishReason(reason openai.FinishReason) (FinishReason, error) {
switch reason {
case openai.FinishReasonToolCalls:
return FinishReasonToolCalls, nil
case openai.FinishReasonStop:
return FinishReasonStop, nil
case openai.FinishReasonLength:
return FinishReasonMaxTokens, nil
case openai.FinishReasonFunctionCall:
return FinishReasonToolCalls, nil
case openai.FinishReasonContentFilter:
return FinishReasonStop, nil
case openai.FinishReasonNull:
return FinishReasonNull, nil
case "":
return FinishReasonNull, nil
default:
return FinishReason(""), fmt.Errorf("default case reason: %s", reason)
}
}
func (w *openAIStreamWrapper) Close() error {
return w.stream.Close()
}
// CreateChatCompletionStream implements the LLM interface for OpenAI streaming
func (o *OpenAILLM) CreateChatCompletionStream(ctx context.Context, req ChatCompletionRequest) (ChatCompletionStream, error) {
// check if model is compatible with OpenAI
if !o.isSupported(req.Model) {
return nil, fmt.Errorf("model %s is not available", req.Model)
}
topP := float32(1)
if req.TopP != nil {
topP = *req.TopP
}
// Set system prompt if provided
var messages []openai.ChatCompletionMessage
if req.SystemPrompt != nil {
messages = append(messages, openai.ChatCompletionMessage{
Role: openai.ChatMessageRoleSystem,
Content: *req.SystemPrompt,
})
}
inputMessages := convertToOpenAIMessages(req.Messages)
messages = append(messages, inputMessages...)
openAIReq := openai.ChatCompletionRequest{
Model: string(req.Model), // TODO: convert model name
Messages: messages,
Temperature: req.Temperature,
N: 1,
Stop: []string{},
Tools: convertToOpenAITools(req.Tools),
Stream: true,
TopP: topP,
MaxCompletionTokens: req.MaxTokens,
}
if req.JSONMode {
openAIReq.ResponseFormat = &openai.ChatCompletionResponseFormat{
Type: openai.ChatCompletionResponseFormatTypeJSONObject,
}
}
stream, err := o.client.CreateChatCompletionStream(ctx, openAIReq)
if err != nil {
var openAIErr *openai.APIError
if errors.As(err, &openAIErr) {
return nil, fmt.Errorf("OpenAI API error: %s - %s", openAIErr.Code, openAIErr.Message)
}
return nil, fmt.Errorf("stream creation failed: %w", err)
}
return newOpenAIStreamWrapper(stream), nil
}