deepagents 0.1.1__tar.gz → 0.1.3__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.
- {deepagents-0.1.1/src/deepagents.egg-info → deepagents-0.1.3}/PKG-INFO +4 -4
- {deepagents-0.1.1 → deepagents-0.1.3}/pyproject.toml +4 -4
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/middleware/subagents.py +1 -1
- {deepagents-0.1.1 → deepagents-0.1.3/src/deepagents.egg-info}/PKG-INFO +4 -4
- deepagents-0.1.3/src/deepagents.egg-info/requires.txt +10 -0
- deepagents-0.1.1/src/deepagents.egg-info/requires.txt +0 -10
- {deepagents-0.1.1 → deepagents-0.1.3}/LICENSE +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/README.md +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/setup.cfg +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/__init__.py +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/graph.py +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/middleware/__init__.py +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/middleware/filesystem.py +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents/middleware/patch_tool_calls.py +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents.egg-info/SOURCES.txt +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents.egg-info/dependency_links.txt +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/src/deepagents.egg-info/top_level.txt +0 -0
- {deepagents-0.1.1 → deepagents-0.1.3}/tests/test_middleware.py +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepagents
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: General purpose 'deep agent' with sub-agent spawning, todo list capabilities, and mock file system. Built on LangGraph.
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: <4.0,>=3.11
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
-
Requires-Dist: langchain-anthropic
|
|
10
|
-
Requires-Dist: langchain
|
|
11
|
-
Requires-Dist: langchain-core
|
|
9
|
+
Requires-Dist: langchain-anthropic<2.0.0,>=1.0.0
|
|
10
|
+
Requires-Dist: langchain<2.0.0,>=1.0.0
|
|
11
|
+
Requires-Dist: langchain-core<2.0.0,>=1.0.0
|
|
12
12
|
Provides-Extra: dev
|
|
13
13
|
Requires-Dist: pytest; extra == "dev"
|
|
14
14
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "deepagents"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "General purpose 'deep agent' with sub-agent spawning, todo list capabilities, and mock file system. Built on LangGraph."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
7
7
|
requires-python = ">=3.11,<4.0"
|
|
8
8
|
dependencies = [
|
|
9
|
-
"langchain-anthropic
|
|
10
|
-
"langchain
|
|
11
|
-
"langchain-core
|
|
9
|
+
"langchain-anthropic>=1.0.0,<2.0.0",
|
|
10
|
+
"langchain>=1.0.0,<2.0.0",
|
|
11
|
+
"langchain-core>=1.0.0,<2.0.0",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[project.optional-dependencies]
|
|
@@ -262,7 +262,7 @@ def _get_subagents(
|
|
|
262
262
|
|
|
263
263
|
subagent_model = agent_.get("model", default_model)
|
|
264
264
|
|
|
265
|
-
_middleware = [*default_subagent_middleware, *agent_["middleware"]] if "middleware" in agent_ else default_subagent_middleware
|
|
265
|
+
_middleware = [*default_subagent_middleware, *agent_["middleware"]] if "middleware" in agent_ else [*default_subagent_middleware]
|
|
266
266
|
|
|
267
267
|
interrupt_on = agent_.get("interrupt_on", default_interrupt_on)
|
|
268
268
|
if interrupt_on:
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepagents
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: General purpose 'deep agent' with sub-agent spawning, todo list capabilities, and mock file system. Built on LangGraph.
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: <4.0,>=3.11
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
-
Requires-Dist: langchain-anthropic
|
|
10
|
-
Requires-Dist: langchain
|
|
11
|
-
Requires-Dist: langchain-core
|
|
9
|
+
Requires-Dist: langchain-anthropic<2.0.0,>=1.0.0
|
|
10
|
+
Requires-Dist: langchain<2.0.0,>=1.0.0
|
|
11
|
+
Requires-Dist: langchain-core<2.0.0,>=1.0.0
|
|
12
12
|
Provides-Extra: dev
|
|
13
13
|
Requires-Dist: pytest; extra == "dev"
|
|
14
14
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
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
|