Skip to content

Releases: agentguard-ai/tealtiger-python

v0.1.1 - Initial Release

30 Jan 11:16

Choose a tag to compare

🎉 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-sdk

v0.1.0 - Initial Release

30 Jan 11:05

Choose a tag to compare

🎉 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