We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f1fac1 commit 854b611Copy full SHA for 854b611
1 file changed
Tool/Sources/OpenAIService/Memory/AutoManagedChatGPTMemory.swift
@@ -290,13 +290,11 @@ extension AutoManagedChatGPTMemory {
290
Here are the information you know about the system and the project, \
291
separated by \(separator)
292
293
-
+
294
"""
295
- } else {
296
- text += "\n\(separator)\n"
297
}
298
299
- text += content.content
+ text += "\n\n\(separator)[DOCUMENT \(index)]\n\n" + content.content
300
301
302
return .init(role: .user, content: text)
0 commit comments