Skip to content

Releases: agentguard-ai/tealtiger-python-prod

TealTiger v1.1.1

03 Apr 10:03

Choose a tag to compare

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

03 Apr 07:03

Choose a tag to compare

TealTiger v1.1.0 — 7 LLM providers, 95%+ market coverage, TealEngine, enterprise features, zero infrastructure.
Click "Publish releas

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