forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenAIChatCompletionsService.swift
More file actions
500 lines (455 loc) · 17.2 KB
/
OpenAIChatCompletionsService.swift
File metadata and controls
500 lines (455 loc) · 17.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
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
import AIModel
import AsyncAlgorithms
import Foundation
import Logger
import Preferences
/// https://platform.openai.com/docs/api-reference/chat/create
actor OpenAIChatCompletionsService: ChatCompletionsStreamAPI, ChatCompletionsAPI {
struct CompletionAPIError: Error, Decodable, LocalizedError {
struct ErrorDetail: Decodable {
var message: String
var type: String?
var param: String?
var code: String?
}
struct MistralAIErrorMessage: Decodable {
struct Detail: Decodable {
var msg: String?
}
var message: String?
var msg: String?
var detail: [Detail]?
}
enum Message {
case raw(String)
case mistralAI(MistralAIErrorMessage)
}
var error: ErrorDetail?
var message: Message
var errorDescription: String? {
if let message = error?.message { return message }
switch message {
case let .raw(string):
return string
case let .mistralAI(mistralAIErrorMessage):
return mistralAIErrorMessage.message
?? mistralAIErrorMessage.msg
?? mistralAIErrorMessage.detail?.first?.msg
?? "Unknown Error"
}
}
enum CodingKeys: String, CodingKey {
case error
case message
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
do {
error = try container.decode(ErrorDetail.self, forKey: .error)
} catch {
print(error)
self.error = nil
}
message = {
if let e = try? container.decode(MistralAIErrorMessage.self, forKey: .message) {
return CompletionAPIError.Message.mistralAI(e)
}
if let e = try? container.decode(String.self, forKey: .message) {
return .raw(e)
}
return .raw("Unknown Error")
}()
}
}
enum MessageRole: String, Codable {
case system
case user
case assistant
case function
case tool
var formalized: ChatCompletionsRequestBody.Message.Role {
switch self {
case .system: return .system
case .user: return .user
case .assistant: return .assistant
case .function: return .tool
case .tool: return .tool
}
}
}
struct StreamDataChunk: Codable {
var id: String?
var object: String?
var model: String?
var choices: [Choice]?
struct Choice: Codable {
var delta: Delta?
var index: Int?
var finish_reason: String?
struct Delta: Codable {
var role: MessageRole?
var content: String?
var function_call: RequestBody.MessageFunctionCall?
var tool_calls: [RequestBody.MessageToolCall]?
}
}
}
struct ResponseBody: Codable, Equatable {
struct Message: Codable, Equatable {
/// The role of the message.
var role: MessageRole
/// The content of the message.
var content: String?
/// When we want to reply to a function call with the result, we have to provide the
/// name of the function call, and include the result in `content`.
///
/// - important: It's required when the role is `function`.
var name: String?
/// When the bot wants to call a function, it will reply with a function call in format:
/// ```json
/// {
/// "name": "weather",
/// "arguments": "{ \"location\": \"earth\" }"
/// }
/// ```
var function_call: RequestBody.MessageFunctionCall?
/// Tool calls in an assistant message.
var tool_calls: [RequestBody.MessageToolCall]?
}
struct Choice: Codable, Equatable {
var message: Message
var index: Int
var finish_reason: String
}
struct Usage: Codable, Equatable {
var prompt_tokens: Int
var completion_tokens: Int
var total_tokens: Int
}
var id: String?
var object: String
var model: String
var usage: Usage
var choices: [Choice]
}
struct RequestBody: Codable, Equatable {
struct Message: Codable, Equatable {
/// The role of the message.
var role: MessageRole
/// The content of the message.
var content: String
/// When we want to reply to a function call with the result, we have to provide the
/// name of the function call, and include the result in `content`.
///
/// - important: It's required when the role is `function`.
var name: String?
/// Tool calls in an assistant message.
var tool_calls: [MessageToolCall]?
/// When we want to call a tool, we have to provide the id of the call.
///
/// - important: It's required when the role is `tool`.
var tool_call_id: String?
/// When the bot wants to call a function, it will reply with a function call.
///
/// Deprecated.
var function_call: MessageFunctionCall?
}
struct MessageFunctionCall: Codable, Equatable {
/// The name of the
var name: String?
/// A JSON string.
var arguments: String?
}
struct MessageToolCall: Codable, Equatable {
/// When it's returned as a data chunk, use the index to identify the tool call.
var index: Int?
/// The id of the tool call.
var id: String?
/// The type of the tool.
var type: String?
/// The function call.
var function: MessageFunctionCall?
}
struct Tool: Codable, Equatable {
var type: String = "function"
var function: ChatGPTFunctionSchema
}
var model: String
var messages: [Message]
var temperature: Double?
var stream: Bool?
var stop: [String]?
var max_tokens: Int?
var tool_choice: FunctionCallStrategy?
var tools: [Tool]?
}
var apiKey: String
var endpoint: URL
var requestBody: RequestBody
var model: ChatModel
init(
apiKey: String,
model: ChatModel,
endpoint: URL,
requestBody: ChatCompletionsRequestBody
) {
self.apiKey = apiKey
self.endpoint = endpoint
self.requestBody = .init(requestBody)
self.model = model
}
func callAsFunction() async throws
-> AsyncThrowingStream<ChatCompletionsStreamDataChunk, Error>
{
requestBody.stream = true
var request = URLRequest(url: endpoint)
request.httpMethod = "POST"
let encoder = JSONEncoder()
request.httpBody = try encoder.encode(requestBody)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
if !apiKey.isEmpty {
switch model.format {
case .openAI:
if !model.info.openAIInfo.organizationID.isEmpty {
request.setValue(
"OpenAI-Organization",
forHTTPHeaderField: model.info.openAIInfo.organizationID
)
}
request.setValue("Bearer \(apiKey)", forHTTPHeaderField: "Authorization")
case .openAICompatible:
request.setValue("Bearer \(apiKey)", forHTTPHeaderField: "Authorization")
case .azureOpenAI:
request.setValue(apiKey, forHTTPHeaderField: "api-key")
case .googleAI:
assertionFailure("Unsupported")
case .ollama:
assertionFailure("Unsupported")
}
}
let (result, response) = try await URLSession.shared.bytes(for: request)
guard let response = response as? HTTPURLResponse else {
throw ChatGPTServiceError.responseInvalid
}
guard response.statusCode == 200 else {
let text = try await result.lines.reduce(into: "") { partialResult, current in
partialResult += current
}
guard let data = text.data(using: .utf8)
else { throw ChatGPTServiceError.responseInvalid }
let decoder = JSONDecoder()
let error = try? decoder.decode(CompletionAPIError.self, from: data)
throw error ?? ChatGPTServiceError.responseInvalid
}
let stream = ResponseStream<StreamDataChunk>(result: result) {
var line = $0
let prefix = "data: "
if line.hasPrefix(prefix) {
line.removeFirst(prefix.count)
}
if line == "[DONE]" { return .init(chunk: nil, done: true) }
do {
let chunk = try JSONDecoder().decode(
StreamDataChunk.self,
from: line.data(using: .utf8) ?? Data()
)
return .init(chunk: chunk, done: false)
} catch {
Logger.service.error("Error decoding stream data: \(error)")
throw error
}
}
return stream.map { $0.formalized() }.toStream()
}
func callAsFunction() async throws -> ChatCompletionResponseBody {
requestBody.stream = false
var request = URLRequest(url: endpoint)
request.httpMethod = "POST"
let encoder = JSONEncoder()
request.httpBody = try encoder.encode(requestBody)
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
if !apiKey.isEmpty {
switch model.format {
case .openAI:
if !model.info.openAIInfo.organizationID.isEmpty {
request.setValue(
"OpenAI-Organization",
forHTTPHeaderField: model.info.openAIInfo.organizationID
)
}
request.setValue("Bearer \(apiKey)", forHTTPHeaderField: "Authorization")
case .openAICompatible:
request.setValue("Bearer \(apiKey)", forHTTPHeaderField: "Authorization")
case .azureOpenAI:
request.setValue(apiKey, forHTTPHeaderField: "api-key")
case .googleAI:
assertionFailure("Unsupported")
case .ollama:
assertionFailure("Unsupported")
}
}
let (result, response) = try await URLSession.shared.data(for: request)
guard let response = response as? HTTPURLResponse else {
throw ChatGPTServiceError.responseInvalid
}
guard response.statusCode == 200 else {
let error = try? JSONDecoder().decode(CompletionAPIError.self, from: result)
throw error ?? ChatGPTServiceError
.otherError(String(data: result, encoding: .utf8) ?? "Unknown Error")
}
do {
let body = try JSONDecoder().decode(ResponseBody.self, from: result)
return body.formalized()
} catch {
dump(error)
throw error
}
}
}
extension OpenAIChatCompletionsService.ResponseBody {
func formalized() -> ChatCompletionResponseBody {
let message: ChatCompletionResponseBody.Message
let otherMessages: [ChatCompletionResponseBody.Message]
func convertMessage(_ message: Message) -> ChatCompletionResponseBody.Message {
.init(
role: message.role.formalized,
content: message.content ?? "",
toolCalls: {
if let toolCalls = message.tool_calls {
return toolCalls.map { toolCall in
.init(
id: toolCall.id ?? "",
type: toolCall.type ?? "function",
function: .init(
name: toolCall.function?.name ?? "",
arguments: toolCall.function?.arguments
)
)
}
} else if let functionCall = message.function_call {
return [
.init(
id: functionCall.name ?? "",
type: "function",
function: .init(
name: functionCall.name ?? "",
arguments: functionCall.arguments
)
),
]
} else {
return []
}
}()
)
}
if let first = choices.first?.message {
message = convertMessage(first)
otherMessages = choices.dropFirst().map { convertMessage($0.message) }
} else {
message = .init(role: .assistant, content: "")
otherMessages = []
}
return .init(
id: id,
object: object,
model: model,
message: message,
otherChoices: otherMessages,
finishReason: choices.first?.finish_reason ?? ""
)
}
}
extension OpenAIChatCompletionsService.StreamDataChunk {
func formalized() -> ChatCompletionsStreamDataChunk {
.init(
id: id,
object: object,
model: model,
message: {
if let choice = self.choices?.first {
return .init(
role: choice.delta?.role?.formalized,
content: choice.delta?.content,
toolCalls: {
if let toolCalls = choice.delta?.tool_calls {
return toolCalls.map {
.init(
index: $0.index,
id: $0.id,
type: $0.type,
function: .init(
name: $0.function?.name,
arguments: $0.function?.arguments
)
)
}
}
if let functionCall = choice.delta?.function_call {
return [
.init(
index: 0,
id: functionCall.name,
type: "function",
function: .init(
name: functionCall.name,
arguments: functionCall.arguments
)
),
]
}
return nil
}()
)
}
return nil
}(),
finishReason: choices?.first?.finish_reason
)
}
}
extension OpenAIChatCompletionsService.RequestBody {
init(_ body: ChatCompletionsRequestBody) {
model = body.model
messages = body.messages.map { message in
.init(
role: {
switch message.role {
case .user:
return .user
case .assistant:
return .assistant
case .system:
return .system
case .tool:
return .tool
}
}(),
content: message.content,
name: message.name,
tool_calls: message.toolCalls?.map { tool in
MessageToolCall(
id: tool.id,
type: tool.type,
function: MessageFunctionCall(
name: tool.function.name,
arguments: tool.function.arguments
)
)
},
tool_call_id: message.toolCallId
)
}
temperature = body.temperature
stream = body.stream
stop = body.stop
max_tokens = body.maxTokens
tool_choice = body.toolChoice
tools = body.tools?.map {
Tool(
type: $0.type,
function: $0.function
)
}
}
}