forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRelevantInformationExtractionChain.swift
More file actions
175 lines (157 loc) · 6.08 KB
/
Copy pathRelevantInformationExtractionChain.swift
File metadata and controls
175 lines (157 loc) · 6.08 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
import ChatBasic
import Foundation
import OpenAIService
import Preferences
public final class RelevantInformationExtractionChain: Chain {
public struct Input {
var question: String
var documents: [(document: Document, distance: Float)]
}
struct TaskInput {
var question: String
var document: Document
}
public typealias Output = String
class FunctionProvider: ChatGPTFunctionProvider {
var functionCallStrategy: FunctionCallStrategy? = .function(name: "saveFinalAnswer")
var functions: [any ChatGPTFunction] = [FinalAnswer()]
}
struct FinalAnswer: ChatGPTArgumentsCollectingFunction {
struct Arguments: Decodable {
var relevantInformation: String
var noRelevantInformationFound: Bool?
}
var name: String = "saveFinalAnswer"
var description: String =
"save the relevant information"
var argumentSchema: JSONSchemaValue {
[
.type: "object",
.properties: [
"relevantInformation": [.type: "string"],
"noRelevantInformationFound": [.type: "boolean"],
],
.required: ["relevantInformation", "noRelevantInformationFound"],
]
}
}
let filterMetadata: (String) -> Bool
let hint: String
init(filterMetadata: @escaping (String) -> Bool = { _ in true }, hint: String) {
self.filterMetadata = filterMetadata
self.hint = hint
}
func buildChatModel() -> ChatModelChain<TaskInput> {
.init(
chatModel: OpenAIChat(
configuration: UserPreferenceChatGPTConfiguration(
chatModelKey: \.preferredChatModelIdForUtilities
)
.overriding {
$0.temperature = 0.5
$0.runFunctionsAutomatically = false
},
memory: EmptyChatGPTMemory(),
functionProvider: FunctionProvider(),
stream: false
)
) { [filterMetadata, hint] input in [
.init(
role: .system,
content: """
Extract the relevant information from the Document according to the Question.
The information may not directly answer the question, but it should be relevant to the question, \
please think carefully and make you decision.
Make the information clear, concise and short.
If found code, wrap it in markdown code block.
\(hint)
"""
),
.init(
role: .user,
content: """
Question:###
(how, when, what or why)
\(input.question)
###
Document:###
\(input.document.metadata.filter { key, _ in
filterMetadata(key)
})
\(input.document.pageContent)
###
"""
),
] }
}
public func callLogic(
_ input: Input,
callbackManagers: [CallbackManager]
) async throws -> Output {
await withTaskGroup(of: String.self) { group in
for document in input.documents {
let taskInput = TaskInput(question: input.question, document: document.document)
group.addTask {
func run() async throws -> String {
let model = self.buildChatModel()
let output = try await model.call(
taskInput,
callbackManagers: callbackManagers
)
if let functionCall = output.toolCalls?
.first(where: { $0.function.name == FinalAnswer().name })?.function
{
do {
let arguments = try JSONDecoder().decode(
FinalAnswer.Arguments.self,
from: functionCall.arguments.data(using: .utf8) ?? Data()
)
if arguments.noRelevantInformationFound ?? false {
return ""
}
return arguments.relevantInformation
} catch {
return output.content ?? ""
}
}
return output.content ?? ""
}
var repeatCount = 0
while repeatCount < 3 {
do {
return try await run()
} catch {
repeatCount += 1
}
}
return ""
}
}
var results = [String]()
for await output in group where !output.isEmpty {
callbackManagers.send(
\.relevantInformationExtractionChainDidExtractPartialRelevantContent,
output
)
let trimmed = output.trimmingCharacters(in: .whitespacesAndNewlines)
if results.contains(trimmed) { continue }
results.append(trimmed)
}
if results.isEmpty { return "No information found." }
return results.joined(separator: "")
}
}
public func parseOutput(_ output: Output) -> String {
return output
}
}
public extension CallbackEvents {
struct RelevantInformationExtractionChainDidExtractPartialRelevantContent: CallbackEvent {
public let info: String
}
var relevantInformationExtractionChainDidExtractPartialRelevantContent:
RelevantInformationExtractionChainDidExtractPartialRelevantContent.Type
{
RelevantInformationExtractionChainDidExtractPartialRelevantContent.self
}
}