Metadata-Version: 2.4
Name: agent-vertical
Version: 0.2.0
Summary: Domain-specific agent templates for common enterprise use cases
Project-URL: Homepage, https://github.com/aumos-ai/agent-vertical
Project-URL: Documentation, https://github.com/aumos-ai/agent-vertical#readme
Project-URL: Repository, https://github.com/aumos-ai/agent-vertical
Project-URL: Issues, https://github.com/aumos-ai/agent-vertical/issues
Author: AumOS Contributors
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Provides-Extra: agentcore
Requires-Dist: aumos-agentcore-sdk>=0.1.0; extra == 'agentcore'
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pip-audit; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Description-Content-Type: text/markdown

# agent-vertical

Domain-specific agent templates for common enterprise use cases

[![CI](https://github.com/aumos-ai/agent-vertical/actions/workflows/ci.yaml/badge.svg)](https://github.com/aumos-ai/agent-vertical/actions/workflows/ci.yaml)
[![PyPI version](https://img.shields.io/pypi/v/agent-vertical.svg)](https://pypi.org/project/agent-vertical/)
[![Python versions](https://img.shields.io/pypi/pyversions/agent-vertical.svg)](https://pypi.org/project/agent-vertical/)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)

Part of the [AumOS](https://github.com/aumos-ai) open-source agent infrastructure portfolio.

---

## Features

- `DomainTemplate` dataclass bundles a system prompt, permitted tools, ordered safety rules, evaluation criteria, and a `RiskTier` classification into a single reusable unit registered in a `TemplateRegistry`
- Four domain template libraries — healthcare, finance, legal, and education — each with multiple named templates (e.g., `clinical_documentation`, `lending_recommendation`, `contract_review`)
- Three-level `RiskTier` hierarchy (INFORMATIONAL, ADVISORY, DECISION_SUPPORT) governs how strictly templates are evaluated and what certifications must pass before deployment
- `CertificationEvaluator` runs domain-specific requirements (accuracy thresholds, citation requirements, disclaimer presence, scope constraints) and produces a structured certification report
- `GroundingValidator` checks agent responses for source citations, tracks claims back to knowledge-base entries, and flags unsupported assertions
- Domain compliance checker maps responses against domain-specific regulatory rules (e.g., HIPAA for healthcare, FCA rules for finance) and flags potential violations
- Benchmark runner executes domain scenario suites against a template-configured agent and scores results against the template's declared evaluation criteria

## Quick Start

Install from PyPI:

```bash
pip install agent-vertical
```

Verify the installation:

```bash
agent-vertical version
```

Basic usage:

```python
import agent_vertical

# See examples/01_quickstart.py for a working example
```

## Documentation

- [Architecture](docs/architecture.md)
- [Contributing](CONTRIBUTING.md)
- [Changelog](CHANGELOG.md)
- [Examples](examples/README.md)

## Enterprise Upgrade

For production deployments requiring SLA-backed support and advanced
integrations, contact the maintainers or see the commercial extensions documentation.

## Contributing

Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md)
before opening a pull request.

## License

Apache 2.0 — see [LICENSE](LICENSE) for full terms.

---

Part of [AumOS](https://github.com/aumos-ai) — open-source agent infrastructure.
