AI Integration Levels
Creators can integrate AI at three levels of complexity:
Level 1: No-Code (For Everyone)
No coding required. Fill in a form on the platform:
- Select template: Chat / Analyst / Image Gen / Writer / Researcher
- Set personality: "You are a laid-back crypto trading assistant"
- Upload knowledge base (optional): PDF, TXT, CSV
- Set price: $0.001 per request
- Pay $10 ($5 deploy fee + $5 minimum AI deposit)
- Click Launch
The platform automatically deploys token + bonding curve + vesting, creates a Tempo wallet for the AI persona, spins up an AI proxy service (calling LLM via MPP—no API keys), creates an MPP endpoint, and registers the persona in the onchain Registry.
Level 2: Connect Your Own (For Developers)
Developers with existing AI servers can register their endpoint URL. The platform creates an MPP proxy in front of the developer's endpoint. All payments are handled by the platform; developers receive net proceeds.
Level 3: Full SDK (For Serious Projects)
import { PersonaAgent } from '@ipo-protocol/agent-sdk'
const agent = new PersonaAgent({
tokenAddress: '0xABC...123',
services: [{
name: 'analyze-portfolio',
pricePerRequest: '0.005',
handler: async (request) => { /* custom logic */ }
}],
buyback: { threshold: 100, percentage: 30, action: 'distribute' }
})
agent.listen(3000)
| Level | AI Hosting | Storage | Who Runs It |
|---|---|---|---|
| Level 1 (No-Code) | IPO Protocol servers | Supabase | Platform |
| Level 2 (Connect) | Developer's server | Developer's server | Developer |
| Level 3 (SDK) | Developer's server | Developer's server | Developer |
IPO Protocol only hosts AI for Level 1. For Level 2 and 3, developers bring their own servers. We provide the economic layer, not the compute layer.