agentmesh_runtime 3.2.2__tar.gz → 3.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.
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/.gitignore +8 -1
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/PKG-INFO +2 -2
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/pyproject.toml +2 -2
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/LICENSE +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/README.md +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/SECURITY.md +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/src/agent_runtime/__init__.py +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/src/agent_runtime/deploy.py +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/src/agent_runtime/py.typed +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/tests/test_deploy.py +0 -0
- {agentmesh_runtime-3.2.2 → agentmesh_runtime-3.3.0}/tests/test_runtime_imports.py +0 -0
|
@@ -246,7 +246,7 @@ PublishScripts/
|
|
|
246
246
|
# NuGet Symbol Packages
|
|
247
247
|
*.snupkg
|
|
248
248
|
# The packages folder can be ignored because of Package Restore
|
|
249
|
-
# DISABLED: mono-repo
|
|
249
|
+
# DISABLED: mono-repo; source code starts at repo root
|
|
250
250
|
# **/[Pp]ackages/*
|
|
251
251
|
# !**/[Pp]ackages/build/
|
|
252
252
|
# #!**/[Pp]ackages/repositories.config
|
|
@@ -455,3 +455,10 @@ FodyWeavers.xsd
|
|
|
455
455
|
.env
|
|
456
456
|
.env.*
|
|
457
457
|
_site/
|
|
458
|
+
|
|
459
|
+
# Build artifacts and caches
|
|
460
|
+
dist/
|
|
461
|
+
.hypothesis/
|
|
462
|
+
.pytest_cache/
|
|
463
|
+
.ruff_cache/
|
|
464
|
+
_site/
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentmesh_runtime
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: Public Preview — AgentMesh Runtime: Execution supervisor for multi-agent sessions with privilege rings, saga orchestration, and audit trails
|
|
5
5
|
Project-URL: Homepage, https://github.com/microsoft/agent-governance-toolkit
|
|
6
6
|
Project-URL: Repository, https://github.com/microsoft/agent-governance-toolkit
|
|
7
|
-
Project-URL: Documentation, https://github.com/microsoft/agent-governance-toolkit/tree/main/
|
|
7
|
+
Project-URL: Documentation, https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-runtime
|
|
8
8
|
Project-URL: Bug Tracker, https://github.com/microsoft/agent-governance-toolkit/issues
|
|
9
9
|
Author-email: Microsoft Corporation <agentgovtoolkit@microsoft.com>
|
|
10
10
|
Maintainer-email: Agent Governance Toolkit Team <agentgovtoolkit@microsoft.com>
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentmesh_runtime"
|
|
7
|
-
version = "3.
|
|
7
|
+
version = "3.3.0"
|
|
8
8
|
description = "Public Preview — AgentMesh Runtime: Execution supervisor for multi-agent sessions with privilege rings, saga orchestration, and audit trails"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
@@ -41,7 +41,7 @@ dependencies = [
|
|
|
41
41
|
[project.urls]
|
|
42
42
|
Homepage = "https://github.com/microsoft/agent-governance-toolkit"
|
|
43
43
|
Repository = "https://github.com/microsoft/agent-governance-toolkit"
|
|
44
|
-
Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/
|
|
44
|
+
Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-runtime"
|
|
45
45
|
"Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
|
|
46
46
|
|
|
47
47
|
[tool.hatch.build.targets.wheel]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|