Metadata-Version: 2.4
Name: avowex
Version: 0.1.0
Summary: Avowex Python SDK — add human-in-the-loop oversight and a tamper-evident audit trail to your AI agents.
Author-email: "Avowex (Renovatio Intl, Inc.)" <support@avowex.com>
License: Apache-2.0
Project-URL: Homepage, https://www.avowex.com
Project-URL: Documentation, https://api.avowex.com/docs
Project-URL: Source, https://github.com/RenovatioIntl/avowex-platform
Project-URL: Issues, https://www.avowex.com/support.html
Keywords: ai,agents,human-in-the-loop,approval,audit,compliance,avowex
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27
Dynamic: license-file

# Avowex — Python SDK

Add **human-in-the-loop oversight** and a **tamper-evident audit trail** to your AI agents. Wrap a risky action, a human approves it, your agent resumes — all logged.

```bash
pip install avowex
```

```python
from avowex import Avowex

avx = Avowex(api_key="avx_live_…")          # defaults to https://api.avowex.com

avx.register_action_type("issue_refund")     # once

esc = avx.escalate(
    action_type="issue_refund",
    recommendation="Refund $240 to customer #8841",
    context={"agent": "billing-agent", "amount": 240},
)
decision = avx.get_decision(esc.id)          # approve / reject / edit
```

Free tier: 500 resolved escalations / month. Get a key at the [Avowex console](https://www.avowex.com/console/).

Avowex — a Renovatio Intl, Inc. company · Apache-2.0
