deepagent-code 0.3.0__py3-none-any.whl → 0.3.1__py3-none-any.whl
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.
- deepagent_code-0.3.1.dist-info/METADATA +25 -0
- deepagent_code-0.3.1.dist-info/RECORD +3 -0
- {deepagent_code-0.3.0.dist-info → deepagent_code-0.3.1.dist-info}/WHEEL +1 -2
- deepagent_code/__init__.py +0 -27
- deepagent_code/cli.py +0 -1536
- deepagent_code/config.py +0 -114
- deepagent_code-0.3.0.dist-info/METADATA +0 -219
- deepagent_code-0.3.0.dist-info/RECORD +0 -9
- deepagent_code-0.3.0.dist-info/entry_points.txt +0 -2
- deepagent_code-0.3.0.dist-info/licenses/LICENSE +0 -21
- deepagent_code-0.3.0.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deepagent-code
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: RENAMED: this package is now 'langstage-cli' (LangStage family). Installing this pulls the new package.
|
|
5
|
+
Project-URL: Homepage, https://github.com/dkedar7/langstage-cli
|
|
6
|
+
Author-email: Kedar Dabhadkar <kdabhadk@gmail.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Requires-Dist: langstage-cli>=0.4.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# deepagent-code → langstage-cli
|
|
13
|
+
|
|
14
|
+
**This package has been renamed to [langstage-cli](https://pypi.org/project/langstage-cli/)** — part of the
|
|
15
|
+
LangStage family rename ("every stage for your LangGraph agent").
|
|
16
|
+
|
|
17
|
+
This final `deepagent-code` release simply depends on `langstage-cli`, so existing installs keep
|
|
18
|
+
working: the new package ships a deprecated import-alias for the old module
|
|
19
|
+
name and keeps the old console command as an alias.
|
|
20
|
+
|
|
21
|
+
Please update your dependencies:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install langstage-cli
|
|
25
|
+
```
|
deepagent_code/__init__.py
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
deepagent_code - A Claude Code-style CLI for running LangGraph agents.
|
|
3
|
-
|
|
4
|
-
The streaming / interrupt utilities that used to live here now come from
|
|
5
|
-
``langgraph-stream-parser``. This package re-exports its dict-based convenience
|
|
6
|
-
API for backward compatibility; the lower-level helpers (interrupt parsing,
|
|
7
|
-
tool-call serialization, content extraction) are available from
|
|
8
|
-
``langgraph_stream_parser.extractors`` if needed directly.
|
|
9
|
-
"""
|
|
10
|
-
|
|
11
|
-
from langgraph_stream_parser import (
|
|
12
|
-
prepare_agent_input,
|
|
13
|
-
stream_graph_updates,
|
|
14
|
-
resume_graph_from_interrupt,
|
|
15
|
-
astream_graph_updates,
|
|
16
|
-
aresume_graph_from_interrupt,
|
|
17
|
-
)
|
|
18
|
-
|
|
19
|
-
__version__ = "0.2.0"
|
|
20
|
-
|
|
21
|
-
__all__ = [
|
|
22
|
-
"prepare_agent_input",
|
|
23
|
-
"stream_graph_updates",
|
|
24
|
-
"resume_graph_from_interrupt",
|
|
25
|
-
"astream_graph_updates",
|
|
26
|
-
"aresume_graph_from_interrupt",
|
|
27
|
-
]
|