File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Core/Sources/ChatContextCollectors/WebChatContextCollector Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ struct QueryWebsiteFunction: ChatGPTFunction {
6363 await reportProgress ( " Loading \( url) .. " )
6464
6565 if let database = await TemporaryUSearch . view ( identifier: urlString) {
66- await reportProgress ( " Generating answers .." )
66+ await reportProgress ( " Getting relevant information .." )
6767 let qa = QAInformationRetrievalChain ( vectorStore: database, embedding: embedding)
6868 return try await qa. call ( . init( arguments. query) ) . information
6969 }
@@ -82,7 +82,7 @@ struct QueryWebsiteFunction: ChatGPTFunction {
8282 let database = TemporaryUSearch ( identifier: urlString)
8383 try await database. set ( embeddedDocuments)
8484 // 4. generate answer
85- await reportProgress ( " Generating answers .." )
85+ await reportProgress ( " Getting relevant information .." )
8686 let qa = QAInformationRetrievalChain ( vectorStore: database, embedding: embedding)
8787 let result = try await qa. call ( . init( arguments. query) )
8888 return result. information
You can’t perform that action at this time.
0 commit comments