maf-sandbox-codeact 0.2.0__tar.gz → 0.2.2__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.
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/PKG-INFO +4 -2
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/README.md +2 -0
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/pyproject.toml +2 -2
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/pyproject.toml.orig +3 -3
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/LICENSE +0 -0
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/src/maf_sandbox_codeact/__init__.py +0 -0
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/src/maf_sandbox_codeact/_tool.py +0 -0
- {maf_sandbox_codeact-0.2.0 → maf_sandbox_codeact-0.2.2}/src/maf_sandbox_codeact/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maf-sandbox-codeact
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: CodeAct as a Microsoft Agent Framework tool — the model writes a short Python program and it runs inside a sandbox — written against maf-sandbox so it runs on any sandbox backend.
|
|
5
5
|
Keywords: codeact,code-execution,sandbox,agent-framework,microsoft-agent-framework
|
|
6
6
|
Author: SOKOLAI BV
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
17
17
|
Classifier: Topic :: Software Development :: Interpreters
|
|
18
|
-
Requires-Dist: maf-sandbox>=0.
|
|
18
|
+
Requires-Dist: maf-sandbox>=0.8.0,<0.11
|
|
19
19
|
Requires-Dist: agent-framework-core>=1.13.0,<2
|
|
20
20
|
Requires-Python: >=3.12, <3.15
|
|
21
21
|
Project-URL: Homepage, https://www.sokol.ai
|
|
@@ -25,6 +25,8 @@ Description-Content-Type: text/markdown
|
|
|
25
25
|
|
|
26
26
|
# maf-sandbox-codeact
|
|
27
27
|
|
|
28
|
+
[](https://pypi.org/project/maf-sandbox-codeact/) [](https://pypi.org/project/maf-sandbox-codeact/) [](https://github.com/sokolaidev/maf-extensions/blob/main/LICENSE)
|
|
29
|
+
|
|
28
30
|
> **Experimental.** This package is early-stage (pre-1.0, `Development Status :: 4 - Beta`) — its API may change or be removed in a future release without notice. Importing it emits a one-time `MafSandboxCodeactExperimentalWarning`; suppress it with `warnings.filterwarnings("ignore", category=maf_sandbox_codeact.MafSandboxCodeactExperimentalWarning)` once you've read the notice.
|
|
29
31
|
|
|
30
32
|
This package is not affiliated with, endorsed by, or a product of Microsoft — it is a third-party reference implementation of [microsoft/agent-framework#7568](https://github.com/microsoft/agent-framework/issues/7568) for [Microsoft Agent Framework](https://aka.ms/AgentFramework).
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# maf-sandbox-codeact
|
|
2
2
|
|
|
3
|
+
[](https://pypi.org/project/maf-sandbox-codeact/) [](https://pypi.org/project/maf-sandbox-codeact/) [](https://github.com/sokolaidev/maf-extensions/blob/main/LICENSE)
|
|
4
|
+
|
|
3
5
|
> **Experimental.** This package is early-stage (pre-1.0, `Development Status :: 4 - Beta`) — its API may change or be removed in a future release without notice. Importing it emits a one-time `MafSandboxCodeactExperimentalWarning`; suppress it with `warnings.filterwarnings("ignore", category=maf_sandbox_codeact.MafSandboxCodeactExperimentalWarning)` once you've read the notice.
|
|
4
6
|
|
|
5
7
|
This package is not affiliated with, endorsed by, or a product of Microsoft — it is a third-party reference implementation of [microsoft/agent-framework#7568](https://github.com/microsoft/agent-framework/issues/7568) for [Microsoft Agent Framework](https://aka.ms/AgentFramework).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "maf-sandbox-codeact"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "CodeAct as a Microsoft Agent Framework tool — the model writes a short Python program and it runs inside a sandbox — written against maf-sandbox so it runs on any sandbox backend."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12,<3.15"
|
|
@@ -24,7 +24,7 @@ classifiers = [
|
|
|
24
24
|
"Topic :: Software Development :: Interpreters",
|
|
25
25
|
]
|
|
26
26
|
dependencies = [
|
|
27
|
-
"maf-sandbox>=0.
|
|
27
|
+
"maf-sandbox>=0.8.0,<0.11",
|
|
28
28
|
"agent-framework-core>=1.13.0,<2",
|
|
29
29
|
]
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "maf-sandbox-codeact"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "CodeAct as a Microsoft Agent Framework tool — the model writes a short Python program and it runs inside a sandbox — written against maf-sandbox so it runs on any sandbox backend."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12,<3.15"
|
|
@@ -32,9 +32,9 @@ dependencies = [
|
|
|
32
32
|
# this range has an order to it — see RELEASING.md. The floor tracks the release where
|
|
33
33
|
# the vocabulary this kind's spec names actually arrives; admit anything older and a
|
|
34
34
|
# published wheel resolves a maf-sandbox base missing those imports. The number itself is
|
|
35
|
-
# below, and `scripts/
|
|
35
|
+
# below, and `scripts/set_dependents_range.py` moves it — so this says which release the
|
|
36
36
|
# floor is for, never which release that is.
|
|
37
|
-
"maf-sandbox>=0.
|
|
37
|
+
"maf-sandbox>=0.8.0,<0.11",
|
|
38
38
|
# The `@tool` decorator. MAF is a genuine dependency of the tool itself, not of the host
|
|
39
39
|
# application.
|
|
40
40
|
"agent-framework-core>=1.13.0,<2",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|