Releases: agentguard-ai/tealtiger-python-prod
Releases · agentguard-ai/tealtiger-python-prod
TealTiger v1.1.1
v1.1.1 — Documentation & Metadata Fix
No code changes. This is a documentation-only patch release.
Changes
- Fixed README to accurately reflect all features included in v1.1.0+
- Removed misleading "Enterprise Feature Comparison" table that incorrectly suggested v1.1.0 had fewer features
- Updated license from MIT to Apache 2.0 across all files (LICENSE, package metadata, badges)
- Fixed homepage URL to tealtiger.ai
- All v1.1.0 features (TealEngine, TealGuard, TealCircuit, TealAudit, correlation IDs, policy testing, cost tracking) are correctly presented as included
Upgrading
No action needed — npm install tealtiger / pip install tealtiger will pick up the latest. No breaking changes, no API changes.
TealTiger v1.1.0
TealTiger v1.1.0 — 7 LLM providers, 95%+ market coverage, TealEngine, enterprise features, zero infrastructure.
Click "Publish releas
v0.1.1 - Initial Release
🎉 Initial release of the AgentGuard Python SDK!
Features
- 🛡️ Runtime security enforcement for AI agents
- 📋 Policy-based access control
- 🔍 Comprehensive audit trails
- ⚡ High performance (<100ms latency)
- 🔧 Full type hints with Pydantic
- 🎯 Request transformation
- 🔄 Async/sync support
- 📊 Built-in statistics tracking
Installation
pip install agentguard-sdk
Quick Start
from agentguard import AgentGuard
guard = AgentGuard(
api_key="your-api-key",
ssa_url="https://ssa.agentguard.io"
)
result = await guard.execute_tool(
tool_name="web-search",
parameters={"query": "AI security"},
context={"session_id": "session-123"}
)
Links
PyPI: https://pypi.org/project/agentguard-sdk/
GitHub: https://github.com/agentguard-ai/agentguard-python
TypeScript SDK: https://github.com/agentguard-ai/agentguard-sdkv0.1.0 - Initial Release
🎉 Initial release of the AgentGuard Python SDK!
Features
- 🛡️ Runtime security enforcement for AI agents
- 📋 Policy-based access control
- 🔍 Comprehensive audit trails
- ⚡ High performance (<100ms latency)
- 🔧 Full type hints with Pydantic
- 🎯 Request transformation
- 🔄 Async/sync support
- 📊 Built-in statistics tracking
Installation
pip install agentguard
Quick Start
from agentguard import AgentGuard
guard = AgentGuard(
api_key="your-api-key",
ssa_url="https://ssa.agentguard.io"
)
result = await guard.execute_tool(
tool_name="web-search",
parameters={"query": "AI security"},
context={"session_id": "session-123"}
)
Documentation
README [https://github.com/agentguard-ai/agentguard-python#readme]
Examples [https://github.com/agentguard-ai/agentguard-python/tree/main/examples]
Contributing [https://github.com/agentguard-ai/agentguard-python/blob/main/CONTRIBUTING.md]
Links
PyPI: https://pypi.org/project/agentguard/
GitHub: https://github.com/agentguard-ai/agentguard-python
TypeScript SDK: https://github.com/agentguard-ai/agentguard-sdk