Metadata-Version: 2.4
Name: actava
Version: 0.1.1
Summary: ActAVA SDK: Enterprise AI orchestration platform for healthcare organizations. Commercial offering for paid customers only.
Project-URL: Homepage, https://actava.ai
Project-URL: Documentation, https://docs.actava.ai
Project-URL: Repository, https://github.com/actava-ai/actava
Project-URL: Support, https://support.actava.ai
Project-URL: Bug Tracker, https://support.actava.ai/issues
Author-email: ActAVA <team@actava.ai>
Maintainer-email: ActAVA <team@actava.ai>
License: Proprietary
Keywords: agents,ai,commercial,enterprise,healthcare,langchain,langgraph,orchestration,telemetry
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: System Administrators
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: fastapi>=0.111
Requires-Dist: langchain<0.4,>=0.2
Requires-Dist: langgraph<0.3,>=0.2
Requires-Dist: pydantic>=2
Requires-Dist: requests>=2.32
Requires-Dist: typer>=0.12
Requires-Dist: uvicorn>=0.30
Provides-Extra: dev
Requires-Dist: black>=23.0; extra == 'dev'
Requires-Dist: mypy>=1.0; extra == 'dev'
Requires-Dist: pre-commit>=3.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Provides-Extra: docs
Requires-Dist: myst-parser>=2.0; extra == 'docs'
Requires-Dist: sphinx-rtd-theme>=1.0; extra == 'docs'
Requires-Dist: sphinx>=7.0; extra == 'docs'
Description-Content-Type: text/markdown

# ActAVA SDK

Enterprise AI orchestration platform for healthcare organizations. Build, deploy, and manage AI agents on ActAVA's managed cloud platform.

## Installation

```bash
pip install actava
```

## Quick Start

```python
import actava as av
from actava.langchain_openai import ChatOpenAI
from actava.langgraph import StateGraph, END

# Initialize ActAVA with your project credentials
av.init(project="your-project-id", api_key="your-api-key")

# Use LangChain/LangGraph as usual
llm = ChatOpenAI(model="gpt-4o")

def my_function(state):
    return {"result": "processed", **state}

# Create and compile graph
graph = StateGraph(dict)
graph.add_node("process", my_function)
graph.add_edge("process", END)
compiled = graph.compile()

# Export graph for deployment
from actava.graph import export
spec = export(graph)
print(spec.model_dump_json(indent=2))
```

## Features

- **Zero API Changes**: Import `actava.langchain` and `actava.langgraph` with no code changes
- **Auto Telemetry**: Automatic instrumentation with configurable sampling
- **Graph Export**: Export LangGraph DAGs to JSON GraphSpec for deployment
- **Runtime Service**: FastAPI-based runtime service for local testing and cloud deployment
- **Healthcare Focus**: Built with healthcare compliance and security in mind
- **Managed Cloud**: Deploy to ActAVA's managed cloud platform with `actava-cli`

## Deployment

Use the ActAVA CLI to deploy your agents to our managed cloud:

```bash
# Install CLI
pip install actava-cli

# Initialize project
actava init

# Deploy agent
actava push --manifest agent.manifest.yaml
```

## Documentation

For full documentation, visit [docs.actava.ai](https://docs.actava.ai)

## Support

- **Commercial Support**: [support.actava.ai](https://support.actava.ai)
- **Documentation**: [docs.actava.ai](https://docs.actava.ai)
- **Enterprise Sales**: [actava.ai](https://actava.ai)

## License

Proprietary software. Licensed for use by ActAVA customers only.
