agentguardproxy 0.2.3__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/PKG-INFO +1 -1
  2. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/adapters/mcp.py +1 -1
  3. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguardproxy.egg-info/PKG-INFO +1 -1
  4. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/pyproject.toml +1 -1
  5. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/README.md +0 -0
  6. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/__init__.py +0 -0
  7. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/adapters/__init__.py +0 -0
  8. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/adapters/browseruse.py +0 -0
  9. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/adapters/crewai.py +0 -0
  10. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguard/adapters/langchain.py +0 -0
  11. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguardproxy.egg-info/SOURCES.txt +0 -0
  12. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguardproxy.egg-info/dependency_links.txt +0 -0
  13. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguardproxy.egg-info/requires.txt +0 -0
  14. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/agentguardproxy.egg-info/top_level.txt +0 -0
  15. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/setup.cfg +0 -0
  16. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/tests/test_adapters.py +0 -0
  17. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/tests/test_decorator.py +0 -0
  18. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/tests/test_guard.py +0 -0
  19. {agentguardproxy-0.2.3 → agentguardproxy-0.3.0}/tests/test_integration.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguardproxy
3
- Version: 0.2.3
3
+ Version: 0.3.0
4
4
  Summary: Python SDK for AgentGuard — the firewall for AI agents
5
5
  Author: AgentGuard Contributors
6
6
  License-Expression: Apache-2.0
@@ -39,7 +39,7 @@ from agentguard import Guard, CheckResult, DEFAULT_BASE_URL
39
39
 
40
40
  # MCP protocol constants
41
41
  MCP_PROTOCOL_VERSION = "2024-11-05"
42
- SDK_VERSION = "0.2.3"
42
+ SDK_VERSION = "0.3.0"
43
43
 
44
44
 
45
45
  class ToolDefinition:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguardproxy
3
- Version: 0.2.3
3
+ Version: 0.3.0
4
4
  Summary: Python SDK for AgentGuard — the firewall for AI agents
5
5
  Author: AgentGuard Contributors
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agentguardproxy"
7
- version = "0.2.3"
7
+ version = "0.3.0"
8
8
  description = "Python SDK for AgentGuard — the firewall for AI agents"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"