Metadata-Version: 2.4
Name: gavrun
Version: 0.2.1
Summary: Python SDK for Gavrun — govern AI agents before risky actions execute
License: MIT
Project-URL: Homepage, https://gavrun.ai
Project-URL: Documentation, https://gavrun.ai/docs
Project-URL: Repository, https://github.com/gavrun-ai/gavrun
Project-URL: Issues, https://github.com/gavrun-ai/gavrun/issues
Keywords: ai,agents,governance,policy,langchain,crewai,openai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: httpx<1.0,>=0.28

# gavrun

Python SDK for [Gavrun](https://gavrun.ai) — govern AI agents before risky actions execute.

Gavrun intercepts agent tool calls, evaluates them against your policies, and requires human approval for high-risk actions before they run.

## Install

```bash
pip install gavrun
```

## Quick start

```python
from gavrun import configure, guard

configure(
    api_key="your-sdk-key",
    agent_name="my-agent",
)

@guard
def delete_user(user_id: str) -> dict:
    ...
```

## Frameworks

Built-in adapters for LangChain, LangGraph, CrewAI, and OpenAI Agents SDK.

```python
from gavrun.adapters import patch_frameworks
patch_frameworks()
```

## Links

- [Dashboard](https://agentmanager.gavrun.ai)
- [Docs](https://gavrun.ai/docs)
