forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModels.swift
More file actions
80 lines (67 loc) · 1.99 KB
/
Models.swift
File metadata and controls
80 lines (67 loc) · 1.99 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
import Foundation
struct Cancellable {
let cancel: () -> Void
func callAsFunction() {
cancel()
}
}
public struct ChatMessage: Equatable, Codable {
public enum Role: String, Codable, Equatable {
case system
case user
case assistant
case function
}
public struct FunctionCall: Codable, Equatable {
public var name: String
public var arguments: String
public init(name: String, arguments: String) {
self.name = name
self.arguments = arguments
}
}
/// The role of a message.
public var role: Role
/// The content of the message, either the chat message, or a result of a function call.
public var content: String? {
didSet { tokensCount = nil }
}
/// A function call from the bot.
public var functionCall: FunctionCall? {
didSet { tokensCount = nil }
}
/// The function name of a reply to a function call.
public var name: String? {
didSet { tokensCount = nil }
}
/// The summary of a message that is used for display.
public var summary: String?
/// The id of the message.
public var id: String
/// The number of tokens of this message.
var tokensCount: Int?
/// Is the message considered empty.
var isEmpty: Bool {
if let content, !content.isEmpty { return false }
if let functionCall, !functionCall.name.isEmpty { return false }
if let name, !name.isEmpty { return false }
return true
}
public init(
id: String = UUID().uuidString,
role: Role,
content: String?,
name: String? = nil,
functionCall: FunctionCall? = nil,
summary: String? = nil,
tokenCount: Int? = nil
) {
self.role = role
self.content = content
self.name = name
self.functionCall = functionCall
self.summary = summary
self.id = id
tokensCount = tokenCount
}
}