@kognitivedev/flows
v0.2.28
Published
Cloud flow SDK for Kognitive flow builder and execution APIs
Downloads
74
Maintainers
Readme
@kognitivedev/flows
Cloud flow SDK for Kognitive's panel-authored flow APIs.
Installation
bun add @kognitivedev/flowsUsage
import { KognitiveFlowsClient } from "@kognitivedev/flows";
const flows = new KognitiveFlowsClient({
baseUrl: "http://localhost:3001",
apiKey: "your-api-key",
});
const flow = await flows.flows.get("my-flow");
const result = await flows.flows.execute("my-flow", { text: "hello" });
const runs = await flows.flows.runs.list("my-flow");