mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-24 21:48:12 +00:00
Fix the problem of web-searching can not complete searching sessions when using bing search. (#2611)
Fix the problem of web-searching can not complete searching sessions.
This commit is contained in:
parent
f5a319de45
commit
e41a9beaae
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ const webBrowsing = {
|
|||
if (searchResponse.length === 0)
|
||||
return `No information was found online for the search query.`;
|
||||
this.super.introspect(
|
||||
`${this.caller}: I found ${data.length} results - looking over them now.`
|
||||
`${this.caller}: I found ${searchResponse.length} results - looking over them now.`
|
||||
);
|
||||
return JSON.stringify(searchResponse);
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue