Quick Start
Quick Start
Get Talon running locally in 3 minutes and execute your first agent query.
1
Download & Run
Talon ships as a single binary. Download the version for your architecture and start the server.
Terminal
curl -fsSL https://raw.githubusercontent.com/darkmice/talon/main/install.sh | sh ./talon-server --start 2
SQL Basics
Talon supports standard SQL syntax. Create tables and insert data with full ACID guarantees.
Create Table
CREATE TABLE users (
id UUID PRIMARY KEY,
name TEXT,
embedding VECTOR(1536)
); 3
Multi-Modal Magic
This is where Talon shines. Mix KV storage, vector search, and relational data in a single query.
KV & Vector Hybrid
SELECT id, name,
vector_similarity(embedding, ?) AS score
FROM users
WHERE last_active > NOW() - INTERVAL '1 hour'
ORDER BY score ASC
LIMIT 10; talon-cli — bash — 80x24
Last login: Today 10:42:01 on ttys001
user@dev:~$curl -fsSL https://raw.githubusercontent.com/darkmice/talon/main/install.sh | sh
Downloading Talon v0.1.0...
############################################ 100.0%
✓ Talon installed successfully to /usr/local/bin/talon-server
############################################ 100.0%
✓ Talon installed successfully to /usr/local/bin/talon-server
user@dev:~$./talon-server --start
INFO [System] Initializing storage engine...
INFO [Engine] SQL Engine Ready
INFO [Engine] KV Store Ready (fjall backend)
INFO [Engine] Vector Search Ready (HNSW Index loaded)
SUCCESS Server listening on 0.0.0.0:8080
user@dev:~$talon-cli sql "CREATE TABLE users (id INT PK, name TEXT)"
CREATE TABLE
Query returned successfully in 0.003ms
Query returned successfully in 0.003ms
user@dev:~$talon-cli query --hybrid
> Executing Vector Search...
| id | name | score |
|---|---|---|
| a1b2-c3d4... | Alice Agent | 0.982 |
| e5f6-g7h8... | Bob Worker | 0.945 |
2 rows retrieved in 1.2ms
user@dev:~$
● Connected CPU: 0.4% MEM: 124MB
UTF-8
Ready for Production?
Talon is ready to scale. Check the full API docs and SDKs to turn your prototype into a high-performance AI application.