Metadata-Version: 2.4
Name: authbinder
Version: 1.0.0
Summary: AI agent audit platform SDK. Captures telemetry from LangChain, CrewAI, AutoGen, LlamaIndex, and Haystack agents.
Author-email: AuthBinder <info@getauthbinder.com>
License: MIT
Project-URL: Homepage, https://authbinder.com
Keywords: ai,agents,audit,security,compliance,langchain,crewai,autogen
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.24.0

# AuthBinder SDK

AI agent audit platform. Automatically captures telemetry from your AI agents for risk scoring and compliance reporting.

## Install

pip install authbinder

## Usage

from authbinder import init, auto_instrument

init(
    tenant_id="your-tenant-id",
    api_key="ab_live_your-api-key",
    package="baseline"
)
auto_instrument()

## Supported frameworks

- LangChain
- CrewAI
- AutoGen
- LlamaIndex
- Haystack

## Manual instrumentation

from authbinder import observe

@observe(destination="salesforce", action="read")
def crm_lookup(customer_id):
    ...

## Links

- Website: https://authbinder.com
- Support: info@getauthbinder.com
