Now in Public Beta

Backend Platform for AI-Native Products

Define agents in plain English or from code, deploy hosted harnesses, and call one managed cloud API.

Quick Start
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

Acme Corp
TechVision
DataFlow
CloudSync

Everything you need to build AI agents

Production-ready infrastructure with enterprise-grade security and monitoring

Composable Harnesses

Build complex workflows with reusable components. Chain agents, add conditional logic, and create sophisticated pipelines.

agent.pipe(validator).pipe(executor)

Multimodal Capabilities

Vision, audio, and text processing in one API. Handle images, documents, and voice with the same interface.

process([image, text, audio])

Sandboxed Actions

Built-in code execution, browser automation, and file handling. Secure by default with isolated environments.

sandbox.execute(userCode)

Scheduled Operations

Background jobs and cron-style scheduling. Run agents on a timer or trigger them from webhooks.

schedule.cron('0 0 * * *')

Fleet Controls

Budget limits and spend monitoring across all agents. Set guardrails and get real-time cost alerts.

fleet.setLimit('$1000/month')

Enterprise Security

SOC 2 compliant infrastructure with end-to-end encryption. Your data never leaves your control.

encryption: 'AES-256-GCM'

Works with your stack

Native SDKs for every major language and framework

Next.js
React
Python
Node.js
TypeScript
Go

No vendor lock-in

Use any model from any provider. Switch between models with a single line of code.

OpenAI
Anthropic
Google
Meta

Frequently Asked Questions

Start building in minutes

Install the SDK and make your first API call in under 5 minutes

Install via npm
npm install @polpo/sdk