Skip to main content

Python SDK for building single-agent and multi-agent AI systems

Project description

Nanitics

Nanitics

Python SDK for building single-agent and multi-agent AI systems.

CI PyPI Python License

Compose agents from typed primitives. Trace every decision through the built-in Observatory. No framework lock-in.

Why Nanitics?

  • Composable primitives, not a framework. Pick the pieces you need — agent strategies, coordination patterns, memory, evaluation, HITL, tools — and compose them. No runtime or opinionated workflow shape is imposed. Apache-2.0, typed, with an explicit public API (nanitics.__all__).
  • Trace-first observability. Every agent loop, tool call, and coordination event emits a structured event. The built-in Observatory trace viewer turns that into a live debugging surface from day one. No instrumentation to add.
  • Real-services validation. Public components are validated against real LLM providers before release, not just mocks. Mocks drive fast tests; real services prove correctness.

Features

Start here

The minimum you need to build something useful.

  • ReAct agent — the default reasoning loop. Add a tool, give it a task, get a result.
  • Tools — function tools, MCP tools, and built-in tools (web search, HTTP, file read, code execution) with automatic schema generation.
  • Working memory — structured state that survives across steps.
  • Human-in-the-Loop — approval and revision gates, with durable suspension for long-running workflows.
  • Multi-agent foundations — agent-as-tool, handoff, broadcast: the primitives that compose two agents.

Also in core

Reasoning and CodeAct agents, the remaining memory types (episodic, long-term, semantic, shared), Sequential / Parallel / DAG orchestration, orchestrator, supervisor, blackboard, and judge-router coordination, evaluators, planning, event-based tracing with the Observatory, and safety primitives.

Advanced patterns

Specialized primitives in nanitics.specialized — Reflexion, ReWOO, LATS, Tree of Thought, bidding, debate, consensus, message bus, peer network, hierarchical planning, and more workflow shapes. Reach for them deliberately. See the Advanced Patterns index.

Public API surface

The SDK exposes three namespaces. nanitics is the recommended core — primitives and load-bearing compositions for building most agentic systems. nanitics.patterns exposes named compositions over the core (sugar over primitives — create_orchestrator, the structured handoff stack). nanitics.specialized exposes specialized primitives that are structurally distinct but niche — reach for them deliberately rather than by default. nanitics.__all__ (plus nanitics.patterns.__all__ and nanitics.specialized.__all__) is the authoritative list.

Quick Start

For a full end-to-end run against a real LLM, see the deployment guide.

Install Nanitics:

pip install nanitics

Create a ReAct agent with a tool, driven by a scripted MockLLMClient so the snippet runs without an API key:

import asyncio
from nanitics.infrastructure import LLMResponse, MockLLMClient
from nanitics.strategies import ReActAgent, tool
from nanitics.tracing import InMemoryEmitter, ToolCall, Usage

@tool("greet", "Greet someone by name")
async def greet(name: str) -> str:
    return f"Hello, {name}!"

async def main():
    llm = MockLLMClient(responses=[
        LLMResponse(
            content="I'll greet them.",
            tool_calls=[ToolCall(id="1", name="greet", arguments={"name": "world"})],
            usage=Usage(input_tokens=50, output_tokens=20),
            model="mock",
            stop_reason="tool_use",
        ),
        LLMResponse(
            content="Hello, world!",
            tool_calls=[],
            usage=Usage(input_tokens=80, output_tokens=15),
            model="mock",
            stop_reason="end_turn",
        ),
    ])
    agent = ReActAgent(
        name="my-agent",
        llm_client=llm,
        emitter=InMemoryEmitter("trace-001"),
        system_prompt="You are a helpful assistant.",
        tools=[greet],
    )
    result = await agent.run("Say hello to the world")
    print(result.output)

asyncio.run(main())

To run the same agent against a real provider, set ANTHROPIC_API_KEY and swap MockLLMClient(...) for AnthropicLLMClient(model="claude-haiku-4-5"). Everything else above is unchanged.

See the Getting Started guide for a full walkthrough. For the full API, read the docstrings in the source tree under nanitics/.

LLM Providers

Nanitics supports multiple LLM providers:

Provider Install Client
Anthropic pip install nanitics AnthropicLLMClient
OpenAI pip install nanitics OpenAILLMClient
Mistral pip install nanitics[mistral] MistralLLMClient
LiteLLM pip install nanitics[litellm] LiteLLMClient

For testing and development, use MockLLMClient — no API keys required.

Examples

The examples directory contains runnable examples covering every SDK component. All examples use MockLLMClient for deterministic, API-key-free execution.

See the examples README for a complete index.

Documentation

The full guides index organizes everything in four tiers — Start here, Build on it, Ship it, and Advanced patterns. The fastest entry points:

Guide Description
Getting Started Build your first agent
Core Concepts The agent loop, tools, prompts, LLM clients
Multi-Agent Foundations Agent-as-tool, handoff, broadcast
Advanced Patterns Specialized strategies and coordination shapes
Deployment Full-stack compose, take-to-own-infra, resource and shutdown patterns
API Reference Generated from source docstrings — signatures, fields, constraints

Project

About

Nanitics is maintained by Propodeum.

License

Apache License 2.0. See LICENSE for the full text.

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

nanitics-0.4.5.tar.gz (2.4 MB view details)

Uploaded Source

Built Distribution

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

nanitics-0.4.5-py3-none-any.whl (531.5 kB view details)

Uploaded Python 3

File details

Details for the file nanitics-0.4.5.tar.gz.

File metadata

  • Download URL: nanitics-0.4.5.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nanitics-0.4.5.tar.gz
Algorithm Hash digest
SHA256 9ccd51c678bb960a28c8c0c59b064fbf441018e16b6a8f64fd42ff991404b641
MD5 28e1fd3668e97f679b34d53785d37f04
BLAKE2b-256 cffe5fa5aa719920e7cc6463731c6cf84c80029acdde302dc1641dd1c30bfb30

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanitics-0.4.5.tar.gz:

Publisher: release.yml on nanitics/nanitics

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

File details

Details for the file nanitics-0.4.5-py3-none-any.whl.

File metadata

  • Download URL: nanitics-0.4.5-py3-none-any.whl
  • Upload date:
  • Size: 531.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nanitics-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 1145824c866bd37ac2be903a6d1f2f6b27cad91cae20b400181aa879488e8b18
MD5 7d84d542ed8c5430bc7f13e3f4c27bca
BLAKE2b-256 791548d15cef299220f9a69a8dd226556008a32495e78f29fe9f16aa516ebae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanitics-0.4.5-py3-none-any.whl:

Publisher: release.yml on nanitics/nanitics

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