Skip to content

Commit 554319f

Browse files
committed
Update
1 parent 60d22b4 commit 554319f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Core/Sources/ChatContextCollectors/WebChatContextCollector/QueryWebsiteFunction.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)