Skip to main content

Durable execution for AI agents, built on ZenML

Project description

Kitaru

You build your agents. We make them durable.

Kitaru (来る, "to arrive") helps you run long-running Python agents reliably: checkpoint state, replay from failure, wait for input, and keep durable memory. It is an open-source runtime for agents — any framework, any cloud — built on ZenML foundations.

PyPI Python License

Docs · Quick Start · Examples · Getting Started Guide · Roadmap · Community


Kitaru Dashboard

Your long-running agent crashed at step 7. Kitaru replays from step 7 — not from scratch. Add two decorators to your existing Python agent and get crash recovery, human approval gates, durable memory, cost tracking, and a full dashboard. No rewrite. No graph DSL. No framework lock-in. No distributed systems overhead.

Why Kitaru?

Python-first, no graph DSL

Write normal Python. Use if, for, try/except — whatever your agent needs. Kitaru gives you two decorators (@flow and @checkpoint) and a handful of utility functions. That's it.

from kitaru import checkpoint, flow

@checkpoint
def research(topic: str) -> str:
    return do_research(topic)

@checkpoint
def write_draft(research: str) -> str:
    return generate_draft(research)

@flow
def writing_agent(topic: str) -> str:
    data = research(topic)
    return write_draft(data)

result = writing_agent.run("quantum computing").wait()

Durable execution and memory

Kitaru keeps agent state on disk and in infrastructure, not just in process memory. Checkpoints persist intermediate outputs so you can replay from failure, resume waiting runs, and inspect what happened. Durable memory adds scoped, versioned state for long-running agents across Python, CLI, client, and MCP surfaces.

Deployment flexibility

No workers, no message queues, no distributed systems PhD required. Kitaru runs locally with zero config, and scales to production with a single server backed by a SQL database. Deploy your agents anywhere — Kubernetes, Vertex AI, SageMaker, or AzureML — using Kitaru's stack abstraction.

Built-in dashboard

Every execution is observable from day one. See your agent runs, inspect checkpoint outputs, track LLM costs, and approve human-in-the-loop wait steps — all from a visual dashboard that ships with the Kitaru server. The dashboard ships free, with the server, from day one.

To start that server locally, run kitaru login after installing kitaru[local]. To connect to an existing remote server, run kitaru login <server>.

Quick Start

Install

pip install kitaru

Or with uv (recommended):

uv pip install kitaru

Optional: start a local Kitaru server

Flows run locally by default with the base install. If you also want the local dashboard and REST API, install the local extra and then run bare kitaru login:

uv pip install "kitaru[local]"
kitaru login
kitaru status

Optional: connect to an existing remote Kitaru server

If you already have a deployed Kitaru server, connect to it explicitly:

kitaru login https://my-server.example.com
# add --project <PROJECT> or other remote-login flags if your setup requires them
kitaru status

Initialize your project

kitaru init

Write your first flow

# agent.py
from kitaru import checkpoint, flow

@checkpoint
def fetch_data(url: str) -> str:
    return "some data"

@checkpoint
def process_data(data: str) -> str:
    return data.upper()

@flow
def my_agent(url: str) -> str:
    data = fetch_data(url)
    return process_data(data)

result = my_agent.run("https://example.com").wait()
print(result)  # SOME DATA

Run it

python agent.py

Every checkpoint's output is persisted automatically. You can inspect what happened, replay from any checkpoint, or resume a waiting flow:

kitaru executions list
kitaru executions get <EXECUTION_ID>
kitaru executions logs <EXECUTION_ID>
kitaru executions replay <EXECUTION_ID> --from process_data

Learn more

Resource Description
Getting Started Guide Full setup walkthrough with all examples
Documentation Complete reference and guides
Memory guide Durable memory concepts, scopes, history, and compaction
Examples Runnable workflows for every feature
Stack Selection Guide Deploy to Kubernetes, Vertex AI, SageMaker, or AzureML

Contributing

We welcome contributions! See CONTRIBUTING.md for development setup, code style, and how to submit changes. The default branch is develop — all PRs should target it.

Community and support

  • Discussions — ask questions, share ideas
  • Issues — report bugs, request features
  • Roadmap — see what's coming next
  • Docs — guides and reference

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kitaru-0.4.1.tar.gz (11.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kitaru-0.4.1-py3-none-any.whl (2.9 MB view details)

Uploaded Python 3

File details

Details for the file kitaru-0.4.1.tar.gz.

File metadata

  • Download URL: kitaru-0.4.1.tar.gz
  • Upload date:
  • Size: 11.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for kitaru-0.4.1.tar.gz
Algorithm Hash digest
SHA256 a845bbeb9fc073c808cdfa4b6bc35a1a15b223cc62877694c01bc59b2a306534
MD5 e1f471e6756b0f16a586bf48318a07a6
BLAKE2b-256 3228534838cd1ee5561a63ed1e78af0bdbd887e6759bc1da442a8062e687bf3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kitaru-0.4.1.tar.gz:

Publisher: release.yml on zenml-io/kitaru

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kitaru-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: kitaru-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for kitaru-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cca9eec3ae000ff6255402d655dfb597f222c917aa5267685b14a17a410b3a38
MD5 377a7b65ec4a6bc978cfb7b47bc36dd7
BLAKE2b-256 418e39b456b1630e6195be521515069110778d024e692c7f65deabc902dc85a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for kitaru-0.4.1-py3-none-any.whl:

Publisher: release.yml on zenml-io/kitaru

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page