Skip to content

Commit

Permalink
Fix the problem of web-searching can not complete searching sessions …
Browse files Browse the repository at this point in the history
…when using bing search. (#2611)

Fix the problem of web-searching can not complete searching sessions.
  • Loading branch information
fiyen authored Nov 9, 2024
1 parent f5a319d commit e41a9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils/agents/aibitat/plugins/web-browsing.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},
Expand Down

0 comments on commit e41a9be

Please sign in to comment.