Metadata-Version: 2.4
Name: aetherlab
Version: 0.1.2
Summary: Official Python SDK for AetherLab's AI Guardrails and Compliance Platform
Home-page: https://github.com/AetherLabCo/aetherlab-community
Author: AetherLab
Author-email: AetherLab <support@aetherlab.ai>
License: MIT
Project-URL: Homepage, https://aetherlab.ai
Project-URL: Documentation, https://docs.aetherlab.ai
Project-URL: Repository, https://github.com/AetherLabCo/aetherlab-community
Project-URL: Issues, https://github.com/AetherLabCo/aetherlab-community/issues
Keywords: aetherlab,ai,guardrails,compliance,safety,llm,security
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: urllib3>=1.26.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Requires-Dist: wheel>=0.38.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# AetherLab Python SDK

The official Python SDK for AetherLab's AI Guardrails and Compliance Platform.

## Installation

```bash
pip install aetherlab
```

## Quick Start

```python
from aetherlab import AetherLabClient

# Initialize the client
client = AetherLabClient(api_key="your-api-key")

# Test a text prompt
result = client.test_prompt(
    user_prompt="How can I help you today?",
    blacklisted_keywords=["harmful", "illegal"]
)

print(f"Compliance: {'✅ PASS' if result.is_compliant else '❌ FAIL'}")
print(f"Confidence: {result.confidence_score:.2%}")
```

## Features

- **Text Compliance Testing**: Test prompts against guardrails
- **Image Compliance**: Analyze images for inappropriate content  
- **Secure Watermarking**: Add trackable watermarks to images
- **Compliance Logging**: Track all AI interactions
- **Real-time Monitoring**: Monitor AI behavior in production

## Documentation

Full documentation available at [docs.aetherlab.ai](https://docs.aetherlab.ai)

## Examples

See the [examples directory](https://github.com/AetherLabCo/aetherlab-community/tree/main/examples/python) for detailed examples.

## Support

- Documentation: [docs.aetherlab.ai](https://docs.aetherlab.ai)
- Issues: [GitHub Issues](https://github.com/AetherLabCo/aetherlab-community/issues)
- Email: support@aetherlab.ai

## License

This project is licensed under the MIT License. 
