| title | Quick Start |
|---|---|
| description | Create your first task in 5 minutes |
| icon | zap |
Get Xagent running and create your first task in 5 minutes.
If you haven't installed Xagent yet, follow the [Installation Guide](/installation).For a single machine (lightest — no Docker, needs Python 3.11+):
uv tool install xagent-ai # isolated, no venv needed
# or with pip in a virtual environment (PEP 668):
# python -m venv .venv && source .venv/bin/activate && pip install xagent-ai
xagent # starts on http://127.0.0.1:8000Open http://127.0.0.1:8000 in your browser.
For Docker (best for multi-user / team deployments):
git clone https://github.com/xorbitsai/xagent.git
cd xagent
cp example.env .env
docker compose up -dOpen http://localhost:80 in your browser.
On first startup, Xagent redirects to /setup.
Create your initial admin account there, then log in with that account.
Before creating tasks, you need to configure an LLM provider.
- Click Models in the left sidebar
- Add your API key (OpenAI, Anthropic, or others)
- Select a default model
- Go to the Task page
- Type your request in the chat box
Try one of these examples:
"Research the latest AI developments and write a summary"
"Create a 10-slide presentation about renewable energy"
"Design a promotional poster for a coffee shop"- Press Enter or click Send
- Watch Xagent execute the task in real-time
Xagent will:
- Plan the task automatically
- Show the DAG (workflow) visualization
- Execute each step
- Display results
You can:
- Click nodes in the DAG to see details
- Send follow-up messages
- Upload additional files
- Review execution history
Check that:
- LLM API key is configured correctly
- Model is selected in Models settings
- Your request is clear and specific
- Wait longer (some tasks take time)
- Check the DAG for stuck steps
- Click cancel and try again
- Verify your API key is valid
- Check API rate limits
- Try a different model