Releases: agentguard-ai/tealtiger-python
Releases · agentguard-ai/tealtiger-python
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