Start Herenew
Quickstart
Build and run your first AI workflow in 5 minutes.
Get up and running with Overseer in under 5 minutes. Build your first AI agent and see it in action.
Prerequisites
Before you start, make sure you have:
- Overseer installed (Installation Guide)
- An API key from OpenAI, Anthropic, or a local model provider
Create Your First Agent
Let's create a simple research agent that can answer questions. Open Overseer and:
- Click New Agent in the sidebar
- Give it a name:
research-agent - Select a model (e.g., GPT-4 or Claude)
- Add a system prompt describing the agent's role
agent.yaml
1name: research-agent2model: gpt-43temperature: 0.74system_prompt: |5 You are a helpful research assistant. You provide accurate,6 well-sourced information on any topic. Be concise but thorough.7tools:8 - web_search9 - calculatorRun the Agent
With your agent configured, you can now run it:
- Select the agent from the sidebar
- Enter a prompt in the input field
- Click Run or press Ctrl+Enter
Operator Note
Watch the execution panel to see real-time updates as the agent processes your request.
View the Execution Trace
After the agent completes, you can inspect the full execution trace:
- See every step the agent took
- Review tool calls and their results
- Check token usage and timing
- Debug any issues
Next Steps
Congratulations! You've built your first agent. Here's what to explore next: