forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModels.swift
More file actions
107 lines (91 loc) · 2.75 KB
/
Models.swift
File metadata and controls
107 lines (91 loc) · 2.75 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
import CodableWrappers
import Foundation
import ConversationServiceProvider
public struct ChatMessage: Equatable, Codable {
public typealias ID = String
public enum Role: String, Codable, Equatable {
case system
case user
case assistant
}
public struct Reference: Codable, Equatable {
public enum Kind: String, Codable {
case `class`
case `struct`
case `enum`
case `actor`
case `protocol`
case `extension`
case `case`
case property
case `typealias`
case function
case method
case text
case webpage
case other
}
public var title: String
public var subTitle: String
public var uri: String
public var content: String
public var startLine: Int?
public var endLine: Int?
@FallbackDecoding<ReferenceKindFallback>
public var kind: Kind
public init(
title: String,
subTitle: String,
content: String,
uri: String,
startLine: Int?,
endLine: Int?,
kind: Kind
) {
self.title = title
self.subTitle = subTitle
self.content = content
self.uri = uri
self.startLine = startLine
self.endLine = endLine
self.kind = kind
}
}
/// The role of a message.
@FallbackDecoding<ChatMessageRoleFallback>
public var role: Role
/// The content of the message, either the chat message, or a result of a function call.
public var content: String
/// The summary of a message that is used for display.
public var summary: String?
/// The id of the message.
public var id: ID
/// The turn id of the message.
public var turnId: ID?
/// Rate assistant message
public var rating: ConversationRating = .unrated
/// The references of this message.
@FallbackDecoding<EmptyArray<Reference>>
public var references: [Reference]
public init(
id: String = UUID().uuidString,
role: Role,
turnId: String? = nil,
content: String,
summary: String? = nil,
references: [Reference] = []
) {
self.role = role
self.content = content
self.summary = summary
self.id = id
self.turnId = turnId
self.references = references
}
}
public struct ReferenceKindFallback: FallbackValueProvider {
public static var defaultValue: ChatMessage.Reference.Kind { .other }
}
public struct ChatMessageRoleFallback: FallbackValueProvider {
public static var defaultValue: ChatMessage.Role { .user }
}