Skip to content

v0.1.1 - Initial Release

Latest

Choose a tag to compare

@nagasatish007 nagasatish007 released this 30 Jan 11:16
· 14 commits to main since this 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-sdk