-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathConversationServiceProvider.swift
More file actions
474 lines (411 loc) · 15.3 KB
/
ConversationServiceProvider.swift
File metadata and controls
474 lines (411 loc) · 15.3 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
import CopilotForXcodeKit
import Foundation
import CodableWrappers
import LanguageServerProtocol
public protocol ConversationServiceType {
func createConversation(_ request: ConversationRequest, workspace: WorkspaceInfo) async throws -> ConversationCreateResponse?
func createTurn(with conversationId: String, request: ConversationRequest, workspace: WorkspaceInfo) async throws -> ConversationCreateResponse?
func deleteTurn(with conversationId: String, turnId: String, workspace: WorkspaceInfo) async throws
func cancelProgress(_ workDoneToken: String, workspace: WorkspaceInfo) async throws
func rateConversation(turnId: String, rating: ConversationRating, workspace: WorkspaceInfo) async throws
func copyCode(request: CopyCodeRequest, workspace: WorkspaceInfo) async throws
func templates(workspace: WorkspaceInfo) async throws -> [ChatTemplate]?
func modes(workspace: WorkspaceInfo) async throws -> [ConversationMode]?
func models(workspace: WorkspaceInfo) async throws -> [CopilotModel]?
func notifyDidChangeWatchedFiles(_ event: DidChangeWatchedFilesEvent, workspace: WorkspaceInfo) async throws
func agents(workspace: WorkspaceInfo) async throws -> [ChatAgent]?
func notifyChangeTextDocument(fileURL: URL, content: String, version: Int, workspace: WorkspaceInfo) async throws
func reviewChanges(
workspace: WorkspaceInfo,
changes: [ReviewChangesParams.Change]
) async throws -> CodeReviewResult?
}
public protocol ConversationServiceProvider {
func createConversation(_ request: ConversationRequest, workspaceURL: URL?) async throws -> ConversationCreateResponse?
func createTurn(with conversationId: String, request: ConversationRequest, workspaceURL: URL?) async throws -> ConversationCreateResponse?
func deleteTurn(with conversationId: String, turnId: String, workspaceURL: URL?) async throws
func stopReceivingMessage(_ workDoneToken: String, workspaceURL: URL?) async throws
func rateConversation(turnId: String, rating: ConversationRating, workspaceURL: URL?) async throws
func copyCode(_ request: CopyCodeRequest, workspaceURL: URL?) async throws
func templates() async throws -> [ChatTemplate]?
func modes() async throws -> [ConversationMode]?
func models() async throws -> [CopilotModel]?
func notifyDidChangeWatchedFiles(_ event: DidChangeWatchedFilesEvent, workspace: WorkspaceInfo) async throws
func agents() async throws -> [ChatAgent]?
func notifyChangeTextDocument(fileURL: URL, content: String, version: Int, workspaceURL: URL?) async throws
func reviewChanges(_ changes: [ReviewChangesParams.Change]) async throws -> CodeReviewResult?
}
public struct ConversationFileReference: Hashable, Codable, Equatable {
public let url: URL
public let relativePath: String?
public let fileName: String?
public var isCurrentEditor: Bool = false
public var selection: LSPRange?
public init(
url: URL,
relativePath: String? = nil,
fileName: String? = nil,
isCurrentEditor: Bool = false,
selection: LSPRange? = nil
) {
self.url = url
self.relativePath = relativePath
self.fileName = fileName
self.isCurrentEditor = isCurrentEditor
self.selection = selection
}
public func hash(into hasher: inout Hasher) {
hasher.combine(url)
hasher.combine(isCurrentEditor)
hasher.combine(selection)
}
public static func == (lhs: ConversationFileReference, rhs: ConversationFileReference) -> Bool {
return lhs.url == rhs.url && lhs.isCurrentEditor == rhs.isCurrentEditor
}
}
public struct ConversationDirectoryReference: Hashable, Codable {
public let url: URL
// The project URL that this directory belongs to.
// When directly dragging a directory into the chat, this can be nil.
public let projectURL: URL?
public var depth: Int {
guard let projectURL else {
return -1
}
let directoryPathComponents = url.pathComponents
let projectPathComponents = projectURL.pathComponents
if directoryPathComponents.count <= projectPathComponents.count {
return 0
}
return directoryPathComponents.count - projectPathComponents.count
}
public var relativePath: String {
guard let projectURL else {
return url.path
}
return url.path.replacingOccurrences(of: projectURL.path, with: "")
}
public var displayName: String { url.lastPathComponent }
public init(url: URL, projectURL: URL? = nil) {
self.url = url
self.projectURL = projectURL
}
}
extension ConversationDirectoryReference: Equatable {
public static func == (lhs: ConversationDirectoryReference, rhs: ConversationDirectoryReference) -> Bool {
lhs.url.path == rhs.url.path && lhs.projectURL == rhs.projectURL
}
}
public enum ConversationAttachedReference: Hashable, Codable, Equatable {
case file(ConversationFileReference)
case directory(ConversationDirectoryReference)
public var url: URL {
switch self {
case .directory(let ref):
return ref.url
case .file(let ref):
return ref.url
}
}
public var isDirectory: Bool {
switch self {
case .directory: true
case .file: false
}
}
public var relativePath: String {
switch self {
case .directory(let dir): dir.relativePath
case .file(let file):
file.relativePath ?? file.url.lastPathComponent
}
}
public var displayName: String {
switch self {
case .directory(let dir): dir.displayName
case .file(let file):
file.fileName ?? file.url.lastPathComponent
}
}
}
public enum ImageReferenceSource: String, Codable {
case file = "file"
case pasted = "pasted"
case screenshot = "screenshot"
}
public struct ImageReference: Equatable, Codable, Hashable {
public var data: Data
public var fileUrl: URL?
public var source: ImageReferenceSource
public init(data: Data, source: ImageReferenceSource) {
self.data = data
self.source = source
}
public init(data: Data, fileUrl: URL) {
self.data = data
self.fileUrl = fileUrl
self.source = .file
}
public func dataURL(imageType: String = "") -> String {
let base64String = data.base64EncodedString()
var type = imageType
if let url = fileUrl, imageType.isEmpty {
type = url.pathExtension
}
let mimeType: String
switch type {
case "png":
mimeType = "image/png"
case "jpeg", "jpg":
mimeType = "image/jpeg"
case "bmp":
mimeType = "image/bmp"
case "gif":
mimeType = "image/gif"
case "webp":
mimeType = "image/webp"
case "tiff", "tif":
mimeType = "image/tiff"
default:
mimeType = "image/png"
}
return "data:\(mimeType);base64,\(base64String)"
}
}
public enum MessageContentType: String, Codable {
case text = "text"
case imageUrl = "image_url"
}
public enum ImageDetail: String, Codable {
case low = "low"
case high = "high"
}
public struct ChatCompletionImageURL: Codable,Equatable {
let url: String
let detail: ImageDetail?
public init(url: String, detail: ImageDetail? = nil) {
self.url = url
self.detail = detail
}
}
public struct ChatCompletionContentPartText: Codable, Equatable {
public let type: MessageContentType
public let text: String
public init(text: String) {
self.type = .text
self.text = text
}
}
public struct ChatCompletionContentPartImage: Codable, Equatable {
public let type: MessageContentType
public let imageUrl: ChatCompletionImageURL
public init(imageUrl: ChatCompletionImageURL) {
self.type = .imageUrl
self.imageUrl = imageUrl
}
public init(url: String, detail: ImageDetail? = nil) {
self.type = .imageUrl
self.imageUrl = ChatCompletionImageURL(url: url, detail: detail)
}
}
public enum ChatCompletionContentPart: Codable, Equatable {
case text(ChatCompletionContentPartText)
case imageUrl(ChatCompletionContentPartImage)
private enum CodingKeys: String, CodingKey {
case type
}
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
let type = try container.decode(MessageContentType.self, forKey: .type)
switch type {
case .text:
self = .text(try ChatCompletionContentPartText(from: decoder))
case .imageUrl:
self = .imageUrl(try ChatCompletionContentPartImage(from: decoder))
}
}
public func encode(to encoder: Encoder) throws {
switch self {
case .text(let content):
try content.encode(to: encoder)
case .imageUrl(let content):
try content.encode(to: encoder)
}
}
}
public enum MessageContent: Codable, Equatable {
case string(String)
case messageContentArray([ChatCompletionContentPart])
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if let stringValue = try? container.decode(String.self) {
self = .string(stringValue)
} else if let arrayValue = try? container.decode([ChatCompletionContentPart].self) {
self = .messageContentArray(arrayValue)
} else {
throw DecodingError.typeMismatch(MessageContent.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Expected String or Array of MessageContent"))
}
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .string(let value):
try container.encode(value)
case .messageContentArray(let value):
try container.encode(value)
}
}
}
public struct TurnSchema: Codable {
public var request: MessageContent
public var response: String?
public var agentSlug: String?
public var turnId: String?
public init(request: String, response: String? = nil, agentSlug: String? = nil, turnId: String? = nil) {
self.request = .string(request)
self.response = response
self.agentSlug = agentSlug
self.turnId = turnId
}
public init(
request: [ChatCompletionContentPart],
response: String? = nil,
agentSlug: String? = nil,
turnId: String? = nil
) {
self.request = .messageContentArray(request)
self.response = response
self.agentSlug = agentSlug
self.turnId = turnId
}
public init(request: MessageContent, response: String? = nil, agentSlug: String? = nil, turnId: String? = nil) {
self.request = request
self.response = response
self.agentSlug = agentSlug
self.turnId = turnId
}
}
public struct ConversationRequest {
public var workDoneToken: String
public var content: String
public var contentImages: [ChatCompletionContentPartImage] = []
public var workspaceFolder: String
public var activeDoc: Doc?
public var skills: [String]
public var ignoredSkills: [String]?
public var references: [ConversationAttachedReference]?
public var model: String?
public var modelProviderName: String?
public var turns: [TurnSchema]
public var agentMode: Bool = false
public var customChatModeId: String? = nil
public var userLanguage: String? = nil
public var turnId: String? = nil
public init(
workDoneToken: String,
content: String,
contentImages: [ChatCompletionContentPartImage] = [],
workspaceFolder: String,
activeDoc: Doc? = nil,
skills: [String],
ignoredSkills: [String]? = nil,
references: [ConversationAttachedReference]? = nil,
model: String? = nil,
modelProviderName: String? = nil,
turns: [TurnSchema] = [],
agentMode: Bool = false,
customChatModeId: String? = nil,
userLanguage: String?,
turnId: String? = nil
) {
self.workDoneToken = workDoneToken
self.content = content
self.contentImages = contentImages
self.workspaceFolder = workspaceFolder
self.activeDoc = activeDoc
self.skills = skills
self.ignoredSkills = ignoredSkills
self.references = references
self.model = model
self.modelProviderName = modelProviderName
self.turns = turns
self.agentMode = agentMode
self.customChatModeId = customChatModeId
self.userLanguage = userLanguage
self.turnId = turnId
}
}
public struct CopyCodeRequest {
public var turnId: String
public var codeBlockIndex: Int
public var copyType: CopyKind
public var copiedCharacters: Int
public var totalCharacters: Int
public var copiedText: String
init(turnId: String, codeBlockIndex: Int, copyType: CopyKind, copiedCharacters: Int, totalCharacters: Int, copiedText: String) {
self.turnId = turnId
self.codeBlockIndex = codeBlockIndex
self.copyType = copyType
self.copiedCharacters = copiedCharacters
self.totalCharacters = totalCharacters
self.copiedText = copiedText
}
}
public enum ConversationRating: Int, Codable {
case unrated = 0
case helpful = 1
case unhelpful = -1
}
public enum CopyKind: Int, Codable {
case keyboard = 1
case toolbar = 2
}
public struct ConversationFollowUp: Codable, Equatable {
public var message: String
public var id: String
public var type: String
public init(message: String, id: String, type: String) {
self.message = message
self.id = id
self.type = type
}
}
public struct ConversationProgressStep: Codable, Equatable, Identifiable {
public enum StepStatus: String, Codable {
case running, completed, failed, cancelled
}
public struct StepError: Codable, Equatable {
public let message: String
}
public let id: String
public let title: String
public let description: String?
public var status: StepStatus
public let error: StepError?
public init(id: String, title: String, description: String?, status: StepStatus, error: StepError?) {
self.id = id
self.title = title
self.description = description
self.status = status
self.error = error
}
}
public struct ContextSizeInfo: Codable, Equatable {
public let totalTokenLimit: Int
public let systemPromptTokens: Int
public let toolDefinitionTokens: Int
public let userMessagesTokens: Int
public let assistantMessagesTokens: Int
public let attachedFilesTokens: Int
public let toolResultsTokens: Int
public let totalUsedTokens: Int
public let utilizationPercentage: Double
}
public struct DidChangeWatchedFilesEvent: Codable {
public var workspaceUri: String
public var changes: [FileEvent]
public init(workspaceUri: String, changes: [FileEvent]) {
self.workspaceUri = workspaceUri
self.changes = changes
}
}