Appearance
Usage
Minimal usage example (self-hosted)
After running the installer or docker compose up -d --build, open the AutoGPT frontend in your browser:
http://localhost:3000From there you can:
- Pick a pre-built agent from the marketplace, or
- Create a new agent using the visual block builder or AutoPilot chat.
Example: create an agent via AutoPilot chat
Open
http://localhost:3000and sign in.Click New Agent and select AutoPilot Chat.
Describe the task in plain language, for example:
Monitor Hacker News daily and email me a summary of the top 5 AI stories.AutoGPT generates the workflow blocks automatically.
Click Run to execute the agent.
The agent dashboard shows live status, cost per run, and execution logs.
Service ports
| Service | Port |
|---|---|
| Frontend UI | 3000 |
| Backend WebSocket | 8001 |
| Execution API | 8006 |
Bring your own model keys
Edit AutoGPT/autogpt_platform/.env to set your provider key before starting:
bash
OPENAI_API_KEY=sk-...Restart with docker compose restart after editing .env.