intentframe-executor 0.1.0__tar.gz → 0.1.1__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.
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/PKG-INFO +4 -2
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/README.md +2 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/pyproject.toml +2 -2
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/.gitignore +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/LICENSE +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/__init__.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/config/__init__.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/config/executor.yaml +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/config/schema.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/dispatch.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/gateway.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/main.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/plan.md +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/requirements.txt +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/server.py +0 -0
- {intentframe_executor-0.1.0 → intentframe_executor-0.1.1}/executor/worker_pool.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentframe-executor
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: IntentFrame executor service — dispatches approved actions to capability adapters
|
|
5
5
|
Project-URL: Homepage, https://github.com/intentframe/intentframe
|
|
6
6
|
Project-URL: Repository, https://github.com/intentframe/intentframe
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Topic :: Security
|
|
16
16
|
Requires-Python: >=3.14
|
|
17
17
|
Requires-Dist: fastapi
|
|
18
|
-
Requires-Dist: intentframe-executor-sdk==0.1.
|
|
18
|
+
Requires-Dist: intentframe-executor-sdk==0.1.1
|
|
19
19
|
Requires-Dist: pydantic>=2.12.5
|
|
20
20
|
Requires-Dist: pyyaml>=6.0.3
|
|
21
21
|
Requires-Dist: uvicorn[standard]
|
|
@@ -35,3 +35,5 @@ without modifying this service. Built on `intentframe-executor-sdk`.
|
|
|
35
35
|
```bash
|
|
36
36
|
pip install intentframe-executor
|
|
37
37
|
```
|
|
38
|
+
|
|
39
|
+
PyPI: [intentframe-executor](https://pypi.org/project/intentframe-executor/) · `pip install intentframe-executor==0.1.0` · License: AGPL-3.0 · [Consumer guide](../../docs/package-consumers.md)
|
|
@@ -12,3 +12,5 @@ without modifying this service. Built on `intentframe-executor-sdk`.
|
|
|
12
12
|
```bash
|
|
13
13
|
pip install intentframe-executor
|
|
14
14
|
```
|
|
15
|
+
|
|
16
|
+
PyPI: [intentframe-executor](https://pypi.org/project/intentframe-executor/) · `pip install intentframe-executor==0.1.0` · License: AGPL-3.0 · [Consumer guide](../../docs/package-consumers.md)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "intentframe-executor"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "IntentFrame executor service — dispatches approved actions to capability adapters"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "AGPL-3.0-only"
|
|
@@ -19,7 +19,7 @@ classifiers = [
|
|
|
19
19
|
"Topic :: Security",
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
|
-
"intentframe-executor-sdk==0.1.
|
|
22
|
+
"intentframe-executor-sdk==0.1.1",
|
|
23
23
|
"fastapi",
|
|
24
24
|
"uvicorn[standard]",
|
|
25
25
|
"pydantic>=2.12.5",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|