Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Full TypeScript support included with the JavaScript SDK.
npm install @boobie-ai/sdk
import Boobie, { EngineRunParams } from '@boobie-ai/sdk'; const client = new Boobie({ apiKey: process.env.BOOBIE_API_KEY as string, }); const params: EngineRunParams = { vertical: 'music', workflow: 'release-strategy', context: { artist: 'Artist Name', genre: 'R&B' }, }; const result = await client.engine.run(params);