Skip to content

v0.2.1 — Initial public release

Choose a tag to compare

@Zizka-ai Zizka-ai released this 30 May 15:21
· 36 commits to main since this release
Immutable release. Only release title and notes can be modified.

ZizkaDB v0.2.1 — Initial public release

The operational database for AI agents — causal lineage, time-travel over logged state, semantic search, and fleet intelligence.

Install

pip install zizkadb-sdk
from zizkadb import ZizkaDB

db = ZizkaDB("your-api-key")  # or host="http://localhost:8000" for self-hosted
await db.log(agent="my-bot", event="tool_call", data={"tool": "search"})
print(await db.why("my-bot"))

What's included

  • Core API — FastAPI backend with Postgres + pgvector, Qdrant, Redis
  • Dashboard — Next.js UI at db.zizka.ai
  • Python SDK (zizkadb-sdk 0.2.1) — pip install
  • TypeScript SDK (zizkadb-sdk 0.2.1) — npm
  • MCP server (zizkadb-mcp 0.1.1) — Cursor / Claude integration
  • Self-host — Docker Compose, no signup required
  • Managed cloud — sign up at db.zizka.ai, get an API key
  • Docsdb.zizka.ai/docs
  • Technical referencedb.zizka.ai/trust

Self-host

git clone https://github.com/Zizka-ai/ZizkaDB
cd ZizkaDB
cp .env.example infra/.env
docker compose -f infra/docker-compose.yml up -d

License

AGPL-3.0