Build flexible, observable, and production-ready AI agents with clean, swappable components.
Xaibo is a modular framework designed to help you build sophisticated AI systems that are easy to test, debug, and evolve. Move beyond monolithic agent scripts and start creating with components you can trust.
Visually trace every step of your agent's operation in the debug UI.
Xaibo's protocol-driven architecture lets you define how components interact without locking you into specific implementations. Swap LLMs, vector stores, or tools without rewriting your agent's core logic.
Every component is automatically wrapped in a transparent proxy that observes all inputs, outputs, and errors. The built-in debug UI provides a sequence diagram of your agent's inner workings, making complex interactions easy to understand and debug.
With first-class support for dependency injection, you can easily swap in mock components to write fast, deterministic tests for your agent's logic. Ensure your agent behaves as expected before you ever hit a real LLM API.
Get your first Xaibo agent running in under a minute.
Prerequisites: Python 3.10+ and pip
.
-
Install
uv
: (if you don't already have it)pip install uv
-
Initialize a new project:
uvx xaibo init my-agent-project
You will be asked what dependencies you want to install. That way you don't need to install half the internet, if you are going to use just third-party APIs.
-
Start the development server:
cd my-agent-project uv run xaibo dev
This starts the development server with an OpenAI compatible chat completions API at
http://localhost:9001/openai
and the debugging ui athttp://localhost:9001
. -
Interact with the example agent: You can now send requests to your agent using any OpenAI-compatible client.
# Send a simple chat completion request to the Xaibo OpenAI-compatible API curl -X POST http://127.0.0.1:9001/openai/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "example", "messages": [ {"role": "user", "content": "Hello, what time is it now?"} ] }'
# Same request using HTTPie (a more user-friendly alternative to curl) http POST http://127.0.0.1:9001/openai/chat/completions \ model=example \ messages:='[{"role": "user", "content": "Hello, what time is it now?"}]'
The init
command sets up a clean, organized project structure for you:
my-agent-project/
├── agents/
│ └── example.yml # Your agent's configuration
├── modules/
│ └── __init__.py
├── tools/
│ └── example.py # An example tool implementation
├── tests/
│ └── test_example.py
└── .env # Environment variables
- Protocol-Driven Architecture: Enforces clean separation between components.
- Built-in Debug UI: Visually trace and inspect your agent's execution flow.
- Dependency Injection: Easily swap implementations and write mockable, testable code.
- Extensible Module System: Ships with modules for major LLM providers (OpenAI, Anthropic, Google), local embeddings, vector memory, and more.
- Tool Support: Create tools with simple python, use MCP servers or integrate whatever fits your needs.
- OpenAI-Compatible API: Use your agent with a wide range of existing tools and libraries out-of-the-box.
- MCP Adapter: Expose your agents as tools to any Model Context Protocol-compatible client.
For detailed guides on agent configuration, core concepts, available protocol implementations, and creating your own modules, please see our full documentation.
Xaibo is actively developed and we welcome contributors!
- GitHub Repository: github.com/xpressai/xaibo - Report issues, suggest features, or submit a pull request.
- Discord Community: Join our Discord Server - Ask questions, share what you're building, and connect with the community.
- Contact Us: [email protected]
Xaibo is actively developing:
- Enhanced visual configuration UI
- Visual tool definition with Xircuits
- More API adapters beyond OpenAI standard
- Multi-user aware agents
The core principles and APIs are stable for production use.
Tests are implemented using pytest. If you are using PyCharm to run them, you will need to configure it to also show logging output. That way some failures will be a lot easier to debug.
Go to File > Settings > Advanced Settings > Python and check the option
Pytest: do not add "--no-header --no-summary -q"
.