I am following Waston AI flowengine documents where one can create tools by exporting the database source. so you need to import this library.
import wxflows from "@wxflows/sdk/langchain";
client creation below
const toolClient = new wxflows({
endpoint: process.env.WXFLOWS_ENDPOINT || "",
apikey: process.env.WXFLOWS_APIKEY,
});
And I have installed the dependencies required for it but I am still getting this error "Cannot find module '@wxflows/sdk/langchain' or its corresponding type declarations."
Has anyone faced this issue and what is the resolution to it?