We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b709da commit 5f08736Copy full SHA for 5f08736
server/utils/agents/aibitat/plugins/web-browsing.js
@@ -162,7 +162,7 @@ const webBrowsing = {
162
const { response, error } = await fetch(url, {
163
method: "GET",
164
headers: {
165
- "Authorization": `Bearer ${process.env.AGENT_SEARCHAPI_API_KEY}`,
+ Authorization: `Bearer ${process.env.AGENT_SEARCHAPI_API_KEY}`,
166
"Content-Type": "application/json",
167
"X-SearchApi-Source": "AnythingLLM",
168
},
@@ -197,7 +197,6 @@ const webBrowsing = {
197
snippet,
198
});
199
200
- console.log (data);
201
202
if (data.length === 0)
203
return `No information was found online for the search query.`;
0 commit comments