A class designed to interact with web pages, either to extract information from them or to summarize their content. It uses the axios library to send HTTP requests and the cheerio library to parse the returned HTML.
const browser = new WebBrowser({ model: new ChatOpenAI({ temperature: 0 }), embeddings: new OpenAIEmbeddings({}),});const result = await browser.invoke("https:exampleurl.com"); Copy
const browser = new WebBrowser({ model: new ChatOpenAI({ temperature: 0 }), embeddings: new OpenAIEmbeddings({}),});const result = await browser.invoke("https:exampleurl.com");
Generated using TypeDoc
A class designed to interact with web pages, either to extract information from them or to summarize their content. It uses the axios library to send HTTP requests and the cheerio library to parse the returned HTML.
Example