import { StackExchangeAPI } from "@langchain/community/tools/stackexchange";// Get results from StackExchange APIconst stackExchangeTool = new StackExchangeAPI();const result = await stackExchangeTool.invoke("zsh: command not found: python");console.log(result);// Get results from StackExchange API with title queryconst stackExchangeTitleTool = new StackExchangeAPI({ queryType: "title",});const titleResult = await stackExchangeTitleTool.invoke( "zsh: command not found: python");console.log(titleResult);// Get results from StackExchange API with bad queryconst stackExchangeBadTool = new StackExchangeAPI();const badResult = await stackExchangeBadTool.invoke( "sjefbsmnazdkhbazkbdoaencopebfoubaef");console.log(badResult);