UNPKG

@langchain/community

Version:
8 lines (7 loc) 289 B
import { test } from "@jest/globals"; import { GoogleCustomSearch } from "../google_custom_search.js"; test.skip("GoogleCustomSearchTool", async () => { const tool = new GoogleCustomSearch(); const result = await tool.invoke("What is Langchain?"); console.log({ result }); });