Skip to Content

Quickstart

Stable

Get your first AI agent running in 5 minutes with elizaOS Cloud.

This guide assumes you have a elizaOS Cloud account. Sign up here if you haven’t already.

Choose Your Path

Using the Agent Creator

The fastest way to create an agent without writing code.

Go to Dashboard → Agent Creator in the elizaOS Cloud dashboard.

Configure Your Agent

Fill in the basic details:

{ "name": "My Assistant", "description": "A helpful AI assistant", "modelProvider": "openai", "model": "gpt-4o" }

Customize Personality

Add bio and style information to shape your agent’s responses:

  • Bio: Background information and expertise
  • Style: Communication tone and formatting preferences
  • Topics: Areas of knowledge

Deploy & Test

Click “Deploy” to launch your agent. Test it in the built-in chat interface or via API.

Using the API

Integrate elizaOS Cloud directly into your applications.

Step 1: Get Your API Key

Navigate to Dashboard → API Keys and create a new key.

# Your API key will look like this: ELIZA_API_KEY=ek_live_xxxxxxxxxxxxxxxxxxxx

Step 2: Create an Agent

curl -X POST "https://cloud.milady.ai/api/v1/app/agents" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "My Assistant", "bio": "A helpful AI assistant" }'

Step 3: Send a Message

curl -X POST "https://cloud.milady.ai/api/v1/chat/completions" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "YOUR_AGENT_ID", "messages": [ {"role": "user", "content": "Hello! What can you help me with?"} ] }'

Using the CLI

Deploy agents from your local elizaOS project.

Install the CLI

bun add -g @elizaos/cli

Login to elizaOS Cloud

elizaos login

Deploy Your Agent

elizaos deploy --character ./character.json

This uploads your character configuration and deploys it to elizaOS Cloud.

Environment Variables

Configure your local development environment:

# .env ELIZA_API_KEY=ek_live_xxxxxxxxxxxxxxxxxxxx ELIZA_API_URL=https://cloud.milady.ai/api/v1

What’s Next?