Metadata-Version: 2.4
Name: swiss-ai-hub-process
Version: 0.291.5
Summary: Swiss AI Hub Process SDK: orchestrate multi-entity business processes across agents, humans, and programs.
Author: Joel Barmettler, Marius Högger, Michèle Fundneider, Thomas Mannhart, Noah Hermann
Author-email: Joel Barmettler <joel.barmettler@bbv.ch>, Marius Högger <marius.hoegger@bbv.ch>, Michèle Fundneider <michele.fundneider@bbv.ch>, Thomas Mannhart <thomas.mannhart@bbv.ch>, Noah Hermann <noah.hermann@bbv.ch>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: swiss-ai-hub-core==0.291.5
Requires-Dist: uvicorn[standard]>=0.34.0
Requires-Dist: httpx>=0.28.1
Requires-Python: >=3.13, <3.14
Project-URL: Homepage, https://github.com/bbvch-ai/aihub-core
Project-URL: Repository, https://github.com/bbvch-ai/aihub-core
Project-URL: Documentation, https://bbvch-ai.github.io/aihub-core/
Project-URL: Issues, https://github.com/bbvch-ai/aihub-core/issues
Description-Content-Type: text/markdown

# Swiss AI Hub Process

Agentic process SDK for the [Swiss AI Hub](https://github.com/bbvch-ai/aihub-core) platform. Orchestrate multi-step
business processes that delegate work across agents, humans, programs, and other processes.

- **Entity delegation** — the core differentiator: each step declares `In`/`Out` entity annotations (Agent, Human,
  Program, Process) and the engine routes work between them.
- **Stateless orchestration** — built on the same decentralized `DispatchableWorkflow` engine as agents; state lives in
  Redis (`WalkthroughContext`) and the JetStream event history.
- **Human + AI + systems** — combine LLM agents, human approval forms, and external program calls in one process.

## Installation

```bash
pip install swiss-ai-hub-process
```

This pulls in [`swiss-ai-hub-core`](https://pypi.org/project/swiss-ai-hub-core/).

## Usage

```python
from swiss_ai_hub.process import AgenticProcess, ProcessRunner
```

## Links

- Source & issues: https://github.com/bbvch-ai/aihub-core
- Documentation: https://bbvch-ai.github.io/aihub-core/

## License

Apache-2.0
