Documentation Index
Fetch the complete documentation index at: https://docs.sb0.dev/llms.txt
Use this file to discover all available pages before exploring further.
Configuration File
Configure your agent environment withagent.config.yaml:
Configuration Options
Version
"0.1" for now.
Image
Build Configuration
python_version- Python version to use (3.12 or higher recommended)python_project- Path to your pyproject.toml filesystem_packages- List of system packages to install (e.g.,git,ffmpeg,imagemagick)
Runtime Configuration
handler- Python module and class for your handler (format:module:ClassName)
Common System Packages
If your agent needs additional system dependencies, add them tosystem_packages:
When to Rebuild
You need to rebuild withsb0 build when you change:
system_packages- Adding or removing system dependenciespython_version- Changing Python versionhandler- Changing handler module or class nameimage- Changing Docker image name/tag
- Adding Python dependencies with
uv add(for local testing withsb0 run) - Editing handler code in
handle_query.py
Next Steps
- Learn how to add Python dependencies
- Understand the agent handler structure