Define agents in plain English or from code, deploy hosted harnesses, and call one managed cloud API.
npm install @polpo/sdk
import { Polpo } from '@polpo/sdk';
const agent = new Polpo({
name: 'CustomerSupport',
model: 'claude-4-5-sonnet',
tools: ['email', 'database']
});
const response = await agent.run(
'Help customer #12345 with refund'
);Trusted by leading teams
Production-ready infrastructure with enterprise-grade security and monitoring
Build complex workflows with reusable components. Chain agents, add conditional logic, and create sophisticated pipelines.
agent.pipe(validator).pipe(executor)Vision, audio, and text processing in one API. Handle images, documents, and voice with the same interface.
process([image, text, audio])Built-in code execution, browser automation, and file handling. Secure by default with isolated environments.
sandbox.execute(userCode)Background jobs and cron-style scheduling. Run agents on a timer or trigger them from webhooks.
schedule.cron('0 0 * * *')Budget limits and spend monitoring across all agents. Set guardrails and get real-time cost alerts.
fleet.setLimit('$1000/month')SOC 2 compliant infrastructure with end-to-end encryption. Your data never leaves your control.
encryption: 'AES-256-GCM'Native SDKs for every major language and framework
Use any model from any provider. Switch between models with a single line of code.
Install the SDK and make your first API call in under 5 minutes
npm install @polpo/sdk