agsamantha/node_modules/@langchain/community/dist/tools/bingserpapi.cjs
2024-10-02 15:15:21 -05:00

78 lines
2.8 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BingSerpAPI = void 0;
const env_1 = require("@langchain/core/utils/env");
const tools_1 = require("@langchain/core/tools");
/**
* A tool for web search functionality using Bing's search engine. It
* extends the base `Tool` class and implements the `_call` method to
* perform the search operation. Requires an API key for Bing's search
* engine, which can be set in the environment variables. Also accepts
* additional parameters for the search query.
*/
class BingSerpAPI extends tools_1.Tool {
static lc_name() {
return "BingSerpAPI";
}
/**
* Not implemented. Will throw an error if called.
*/
toJSON() {
return this.toJSONNotImplemented();
}
constructor(apiKey = (0, env_1.getEnvironmentVariable)("BingApiKey"), params = {}) {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: "bing-search"
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: "a search engine. useful for when you need to answer questions about current events. input should be a search query."
});
Object.defineProperty(this, "key", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "params", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
if (!apiKey) {
throw new Error("BingSerpAPI API key not set. You can set it as BingApiKey in your .env file.");
}
this.key = apiKey;
this.params = params;
}
/** @ignore */
async _call(input) {
const headers = { "Ocp-Apim-Subscription-Key": this.key };
const params = { q: input, textDecorations: "true", textFormat: "HTML" };
const searchUrl = new URL("https://api.bing.microsoft.com/v7.0/search");
Object.entries(params).forEach(([key, value]) => {
searchUrl.searchParams.append(key, value);
});
const response = await fetch(searchUrl, { headers });
if (!response.ok) {
throw new Error(`HTTP error ${response.status}`);
}
const res = await response.json();
const results = res.webPages.value;
if (results.length === 0) {
return "No good results found.";
}
const snippets = results
.map((result) => result.snippet)
.join(" ");
return snippets;
}
}
exports.BingSerpAPI = BingSerpAPI;