Skip to main content

netzilo (Python)

Netzilo AI Detection & Response(AIDR) for Python

Provides full governance for custom AI agents written in Python

How it works

The Netzilo client is compiled to a native shared library and loaded in-process via ctypes. Every LLM prompt, model response, and tool call your agent makes can be evaluated — allowed, blocked, or redacted — against policy pulled live from your Netzilo management server. No daemon, no sidecar — nothing to stand up.

Install

pip install netzilo

Wheels are published per platform (Linux, macOS, Windows) and are independent of your Python version.

Core API

import netzilo

netzilo.start(server="https://srv.netzilo.com",   # management server
              pat="nzl_...",                       # or setup_key="..."
              agent_name="my-agent")               # non-blocking

netzilo.is_running()                       # -> bool: True once policy has synced (ready to govern)
netzilo.mcp_gateway_port()                 # -> int: scanner gateway port in use (auto-picked)
allowed, reason = netzilo.is_allowed("Bash", {"command": "rm -rf /"})
netzilo.report_result("Bash", "<stdout>")  # post-tool observability
netzilo.flush()                            # force-deliver buffered events to management
netzilo.snapshot()                         # force AIDR behavior-graph snapshot + delivery (else hourly/at-stop)
netzilo.stop()                             # graceful stop (snapshots graph + flushes events; auto-registered atexit)

Parameters may be passed as keyword args (above) or a single config dict. config_path defaults to ~/.netzilo-sdk/config.json; ports auto-pick free ports (governance on by default). is_running() returns True only after the initial policy sync — poll it before kicking off work.

Evaluation runs inside the processevaluate() calls the embedded engine directly, with no HTTP roundtrip and no local port to manage.

Advanced governance (enable_advanced_governance=True) — Linux only

Framework adapters (below) govern at the tool/LLM-hook layer and work on macOS, Linux, and Windows. Advanced governance adds deep inspection of the agent's own outbound traffic — covering every prompt, response, and tool call (including from subprocesses and libraries you have no hook for), with full content analysis and semantic classification. It is currently only supported when your agent process runs on Linux; on macOS/Windows, set enable_advanced_governance=False (the default) and rely on the framework adapters:

netzilo.start(server=..., pat=..., agent_name=..., enable_advanced_governance=True)

It is fully automatic and requires no root and no changes to the host — the SDK prepares the process so the agent's traffic is inspected and continues to work normally. Inspected prompts/responses are analyzed and classified, emitting semantic.event records to your dashboard alongside the usual tool/LLM events. Default off; the framework adapters govern without it.

Framework adapters

Adapters are submodules of the one netzilo package — no separate installs. The framework is imported lazily inside each adapter (where it's imported at all — see below), so pip install netzilo never pulls in a framework you don't use.

Process-wide hooks

Register once; every tool call and LLM call made through the framework is governed from then on — no per-tool wrapping needed.

# CrewAI — registers before/after tool and LLM hooks process-wide
from netzilo.crewai import govern
govern(config={...})

# LangGraph — wrap nodes before compile()
import netzilo.langgraph
netzilo.langgraph.govern(graph, config={...})

# AutoGen — intervention handler
from netzilo.autogen import handler
runtime = SingleThreadedAgentRuntime(intervention_handlers=[handler(config={...})])

See CrewAI: local vs CrewAI AMP below for CrewAI's two deployment modes.

Tool-decorator frameworks

Where a framework's "tool" is a plain function wrapped by a decorator or a from_function()-style constructor, govern_tool() wraps the function itself. Apply it closer to the function than the framework's own decorator so schema inference still sees the original signature (functools.wraps preserves it):

from netzilo.llamaindex import govern, govern_tool
from llama_index.core.tools import FunctionTool

govern()  # starts the embedded client once, at boot

@govern_tool
def get_order_status(order_id: str) -> str:
    ...

tool = FunctionTool.from_defaults(fn=get_order_status)

The same pattern covers netzilo.langchain, netzilo.openai_agents (OpenAI Agents SDK), netzilo.google_adk, netzilo.pydantic_ai, netzilo.semantic_kernel, netzilo.smolagents, and netzilo.haystack — swap the import and the framework's own tool constructor/decorator, everything else is the same. netzilo.tools provides the same govern_tool() for any framework without a dedicated module. netzilo.langchain additionally exposes govern_model() for full prompt/response redaction at the LangChain chat-model boundary — see that module's docstring.

Raw LLM clients

For agents calling a provider's SDK directly with no framework in between, govern_client() patches the one call that sends a prompt so it's gated and redacted in place, then hands back the same client:

from netzilo.openai_sdk import govern, govern_client
from openai import OpenAI

govern()
client = govern_client(OpenAI())

resp = client.chat.completions.create(
    model="gpt-4o", messages=[{"role": "user", "content": "..."}]
)

Also available: netzilo.anthropic_sdk, netzilo.bedrock (AWS Bedrock runtime), netzilo.gemini (Google GenAI), netzilo.mistral — same govern() / govern_client() shape for each provider's own client and method.

Hook / middleware integrations

# LiteLLM — a CustomLogger registered into litellm.callbacks
from netzilo.litellm import govern, handler
import litellm
govern()
litellm.callbacks = [handler()]

# MCP — governs tool calls made through a ClientSession
from netzilo.mcp_client import govern, govern_session
session = govern_session(ClientSession(read_stream, write_stream))

# Guardrails AI — Netzilo as a Validator, composes with a Guard's own pipeline
from guardrails import Guard
from netzilo.guardrails import govern, validator
guard = Guard().use(validator(on_fail="fix"))

CrewAI: local vs CrewAI AMP

Local / self-hosted — put govern() once at the top of your entrypoint, before kickoff(). That's it.

import netzilo.crewai
netzilo.crewai.govern(config={"server": "...", "pat": "...", "agent_name": "my-agent"})

MyCrew().crew().kickoff(inputs={...})   # governed

CrewAI AMP — AMP's managed runtime only executes Flow @start/@listen methods; it skips module-level code, lifecycle hooks, and tool bodies. So the same govern() call goes inside a Flow @start step, then your crew runs in @listen. Deploy with [tool.crewai] type = "flow" in pyproject.toml, and always create the automation fresh as a flow (the type is locked at creation — re-pushing cannot convert an existing crew automation).

from crewai.flow import Flow, listen, start
import time

class MyFlow(Flow):

    @start()
    def init_governance(self):
        import netzilo, netzilo.crewai
        netzilo.crewai.govern(config={"server": "...", "pat": "...", "agent_name": "my-agent"})
        while not netzilo.is_running():   # wait until policy has synced
            time.sleep(0.5)

    @listen(init_governance)
    def run(self):
        return MyCrew().crew().kickoff(inputs={...})   # governed

Optional convenience extras pull a framework alongside netzilo, e.g. pip install netzilo[crewai], netzilo[langgraph], netzilo[llamaindex], netzilo[bedrock] — see [project.optional-dependencies] in pyproject.toml for the full list (one per adapter above). None of these are required: every adapter imports its framework lazily, so the extra is a convenience, not a dependency of the adapter itself.

Configuration

start() / govern() accept a config dict. Common keys:

Key Description
server Your Netzilo management server URL. (management_url is a legacy alias.)
pat / setup_key Credential used to enroll the agent.
agent_name Identifier this agent reports as (used for event attribution).
config_path Local client state (default: ~/.netzilo-sdk/config.json).
mcp_gateway_port Optional; defaults to an auto-picked free port. mcp_gateway_port=0 disables governance.
enable_advanced_governance Optional (default off). Deep inspection of the agent's own outbound traffic with semantic classification.
log_level / log_file Logging verbosity and destination.

Notes

The native library is bundled inside the wheel; pip selects the correct one for your platform automatically. Adapters ship inside the same wheel as submodules — a single distribution, not per-framework packages.

Netzilo is a commercial product. See https://www.netzilo.com.

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

netzilo-4.3.17-py3-none-win_amd64.whl (26.0 MB view details)

Uploaded Python 3Windows x86-64

netzilo-4.3.17-py3-none-manylinux_2_28_x86_64.whl (34.6 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

netzilo-4.3.17-py3-none-manylinux_2_28_aarch64.whl (31.8 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

netzilo-4.3.17-py3-none-macosx_11_0_arm64.whl (23.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

netzilo-4.3.17-py3-none-macosx_10_13_x86_64.whl (25.4 MB view details)

Uploaded Python 3macOS 10.13+ x86-64

File details

Details for the file netzilo-4.3.17-py3-none-win_amd64.whl.

File metadata

  • Download URL: netzilo-4.3.17-py3-none-win_amd64.whl
  • Upload date:
  • Size: 26.0 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.11.16

File hashes

Hashes for netzilo-4.3.17-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 2e17413d87130c41636382684e03400a14e18c7e59c7b9011da464a7b88f0d4b
MD5 62a6211806313a3672da7121b3831f38
BLAKE2b-256 4bb765e574d3f24216a4488a42c627fe9db023b6b8ebc5ffbca7e1ca6fa42c50

See more details on using hashes here.

File details

Details for the file netzilo-4.3.17-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for netzilo-4.3.17-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82b7ce8a71391813e87264a7b7be0d2e337fd2409e25e2b75ccb51d7492e9813
MD5 c9472fb3b2bf95ddfe290dac3e6d7cbd
BLAKE2b-256 a70979dfd5b337894d6eb7c302c6c7a7d74696473422dc9ccd0218ba85a57645

See more details on using hashes here.

File details

Details for the file netzilo-4.3.17-py3-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for netzilo-4.3.17-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ad6f4ae56f71eb9c9a522c8fadfc5af3f5ca30577d251f11e162120624aa352
MD5 ddea373b5bb3dcb9cc4388c674fabdeb
BLAKE2b-256 b18ca0d84153509a360d9fdf050e1f3717c6479c65c289b5406eaa103b5ed8e7

See more details on using hashes here.

File details

Details for the file netzilo-4.3.17-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for netzilo-4.3.17-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a5f0a120a0494294e5aaf9fd4735e42ff87adf3c011c05daf36170c9ff19220
MD5 300b6a3cb66d3279dd67a90aa3f371a3
BLAKE2b-256 c9ebf8e55e4539b455921bbcf77d5d03b5fafc6992d3089b9bed126a5d32a399

See more details on using hashes here.

File details

Details for the file netzilo-4.3.17-py3-none-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for netzilo-4.3.17-py3-none-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2acf4c36022c5b90c0f245d949dc1957841b844d5cf83939fabdc085c24c3e91
MD5 8d7fdd47ad91d6368df13b6d738d7ae0
BLAKE2b-256 b740b1f300fd02dc331ddbc861985912a7bd7ff182007ee7d8f40bea9fb5e335

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

4.3.17 This release

5 files

4.3.16

5 files

4.3.15

5 files

4.3.14

5 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page