agentensor 0.1.1__tar.gz → 0.1.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.
- {agentensor-0.1.1 → agentensor-0.1.2}/.bumpversion.cfg +1 -1
- {agentensor-0.1.1 → agentensor-0.1.2}/PKG-INFO +6 -3
- agentensor-0.1.2/README.md +9 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/pyproject.toml +6 -2
- agentensor-0.1.1/README.md +0 -9
- {agentensor-0.1.1 → agentensor-0.1.2}/.gitignore +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/__init__.py +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/loss.py +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/module.py +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/optim.py +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/py.typed +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/tensor.py +0 -0
- {agentensor-0.1.1 → agentensor-0.1.2}/src/agentensor/train.py +0 -0
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentensor
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Agent prompt tensors, modules, and optimizers for Orcheo workflows
|
|
5
|
+
Project-URL: Homepage, https://github.com/AI-Colleagues/agentensor
|
|
6
|
+
Project-URL: Issues, https://github.com/AI-Colleagues/agentensor/issues
|
|
7
|
+
Project-URL: Source, https://github.com/AI-Colleagues/agentensor
|
|
5
8
|
Requires-Python: >=3.12
|
|
6
9
|
Requires-Dist: datasets>=3.5.0
|
|
7
10
|
Requires-Dist: langchain-deepseek>=1.0.1
|
|
@@ -32,8 +35,8 @@ Description-Content-Type: text/markdown
|
|
|
32
35
|
|
|
33
36
|
# AgenTensor
|
|
34
37
|
|
|
35
|
-
[](https://github.com/AI-Colleagues/agentensor/actions/workflows/ci.yml?query=branch%3Amain)
|
|
39
|
+
[](https://coverage-badge.samuelcolvin.workers.dev/redirect/AI-Colleagues/agentensor)
|
|
37
40
|
[](https://pypi.python.org/pypi/agentensor)
|
|
38
41
|
|
|
39
42
|
## TODO
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# AgenTensor
|
|
2
|
+
|
|
3
|
+
[](https://github.com/AI-Colleagues/agentensor/actions/workflows/ci.yml?query=branch%3Amain)
|
|
4
|
+
[](https://coverage-badge.samuelcolvin.workers.dev/redirect/AI-Colleagues/agentensor)
|
|
5
|
+
[](https://pypi.python.org/pypi/agentensor)
|
|
6
|
+
|
|
7
|
+
## TODO
|
|
8
|
+
|
|
9
|
+
- [ ] Add parameter saving
|
|
@@ -17,8 +17,7 @@ description = "Agent prompt tensors, modules, and optimizers for Orcheo workflow
|
|
|
17
17
|
name = "agentensor"
|
|
18
18
|
readme = "README.md"
|
|
19
19
|
requires-python = ">=3.12"
|
|
20
|
-
|
|
21
|
-
version = "0.1.1"
|
|
20
|
+
version = "0.1.2"
|
|
22
21
|
|
|
23
22
|
[project.optional-dependencies]
|
|
24
23
|
dev = [
|
|
@@ -41,6 +40,11 @@ docs = [
|
|
|
41
40
|
"mkdocstrings[python]>=0.28.1"
|
|
42
41
|
]
|
|
43
42
|
|
|
43
|
+
[project.urls]
|
|
44
|
+
Homepage = "https://github.com/AI-Colleagues/agentensor"
|
|
45
|
+
Issues = "https://github.com/AI-Colleagues/agentensor/issues"
|
|
46
|
+
Source = "https://github.com/AI-Colleagues/agentensor"
|
|
47
|
+
|
|
44
48
|
[tool.coverage.report]
|
|
45
49
|
exclude_lines = [
|
|
46
50
|
"pragma: no cover",
|
agentensor-0.1.1/README.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# AgenTensor
|
|
2
|
-
|
|
3
|
-
[](https://github.com/ShaojieJiang/agentensor/actions/workflows/ci.yml?query=branch%3Amain)
|
|
4
|
-
[](https://coverage-badge.samuelcolvin.workers.dev/redirect/ShaojieJiang/agentensor)
|
|
5
|
-
[](https://pypi.python.org/pypi/agentensor)
|
|
6
|
-
|
|
7
|
-
## TODO
|
|
8
|
-
|
|
9
|
-
- [ ] Add parameter saving
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|