Metadata-Version: 2.4
Name: agentguard-sdk
Version: 0.3.0
Summary: ⚠️ DEPRECATED: This package has been renamed to tealtiger. Install tealtiger instead.
Project-URL: Homepage, https://tealtiger.ai
Project-URL: Documentation, https://docs.tealtiger.ai
Project-URL: Repository, https://github.com/agentguard-ai/TealTiger
Author-email: TealTiger Team <support@tealtiger.co.in>
License: MIT
Keywords: agent,agentguard,ai,deprecated,renamed,sdk,security,tealtiger
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
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: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: tealtiger>=1.0.0
Description-Content-Type: text/markdown

# ⚠️ agentguard-sdk has been renamed to [tealtiger](https://pypi.org/project/tealtiger/)

This package exists only to redirect users to the new **tealtiger** package.

## Migration

```bash
pip uninstall agentguard-sdk
pip install tealtiger
```

## What changed?

AgentGuard has been rebranded to **TealTiger**. All features, APIs, and functionality remain the same — only the package name has changed.

## Links

- **New package**: [tealtiger on PyPI](https://pypi.org/project/tealtiger/)
- **Documentation**: [docs.tealtiger.ai](https://docs.tealtiger.ai)
- **Repository**: [github.com/agentguard-ai/TealTiger](https://github.com/agentguard-ai/TealTiger)
- **Website**: [tealtiger.ai](https://tealtiger.ai)

## Temporary compatibility

This bridge version (`0.3.0`) installs `tealtiger` as a dependency and re-exports all its modules. Your existing code will continue to work, but you will see a deprecation warning on import.

```python
# This still works but shows a deprecation warning:
from agentguard_sdk import TealOpenAI

# Migrate to:
from tealtiger import TealOpenAI
```
