queryflow-ai
v0.0.5
Published
Typescript SDK for QueryflowAI
Readme
QueryflowAI Node SDK
This library provides convenient access to the QueryflowAI API from your node applications.
Installation
npm install queryflow-aiUsage
import { QueryflowClient } from "queryflow-ai";
const client = new QueryflowClient({
apiKey: "<YOUR_API_KEY>",
});
const response = await client.query("<SEARCH_QUERY>");
console.log(response);