agent-apprenticeship 0.1.2 → 0.1.3
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.
package/bin/apprentice
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-apprenticeship",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "The living ecosystem for AI agents learning from real-world work through iterative loops and training-signal exchange.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"url": "git+https://github.com/Forsy-AI/agent-apprenticeship.git"
|
|
9
9
|
},
|
|
10
10
|
"bin": {
|
|
11
|
-
"agent-apprenticeship": "bin/agent-apprenticeship
|
|
12
|
-
"apprentice": "bin/
|
|
11
|
+
"agent-apprenticeship": "bin/agent-apprenticeship",
|
|
12
|
+
"apprentice": "bin/apprentice"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"README.md",
|
package/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-apprenticeship"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "Open framework for turning real agent work into transferable agent experience"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""Agent Apprenticeship framework."""
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.3"
|