Documentation
Start locally. Move to governed cloud when it matters.
The SDK uses the same lifecycle whether the engine is local, dedicated or hosted.
1. Install the client
npm install @apollobot/sdk2. Create an investigation
import { ApolloBot } from "@apollobot/sdk";
const apollo = new ApolloBot({ baseUrl, token });
const run = await apollo.investigations.create({
question: "Which catalyst geometry is robust?",
budgetUsd: 500,
privacy: "private"
});3. Approve before execution
The API returns a protocol and cost range. Execution remains stopped until an authorized role approves both.