Getting started
Install THALIOX and run your first autonomous agent.
Getting started
The THALIOX core is a Rust workspace. Get the repo building, then let an agent complete a task on its own.
Prerequisites
- Rust 1.96+ (
rustup) - An API key for an LLM provider (Anthropic, or any OpenAI-compatible gateway)
Clone and build
git clone https://github.com/thaliox/thaliox-os.git
cd thaliox-os
cargo build --workspace
Run an autonomous agent
Given a goal, the model decides which tool to call (web_search / fetch), executes it, feeds the
result back, and keeps thinking until it produces an answer:
OPENAI_API_KEY=... OPENAI_BASE_URL=... THALIOX_MODEL=glm-5.1 \
TAVILY_API_KEY=... cargo run -p thaliox-runtime --example autonomous_agent
Without a key it falls back to a scripted mock that demonstrates the same loop.
Next
- Core concepts — understand TAM's primitives and invariants.