deepagent-code 0.1.0__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/__init__.py +46 -0
- deepagent_code/cli.py +796 -0
- deepagent_code/utils.py +653 -0
- deepagent_code-0.1.0.dist-info/METADATA +161 -0
- deepagent_code-0.1.0.dist-info/RECORD +9 -0
- deepagent_code-0.1.0.dist-info/WHEEL +5 -0
- deepagent_code-0.1.0.dist-info/entry_points.txt +2 -0
- deepagent_code-0.1.0.dist-info/licenses/LICENSE +21 -0
- deepagent_code-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""
|
|
2
|
+
deepagent_code - A Claude Code-style CLI for running LangGraph agents.
|
|
3
|
+
|
|
4
|
+
This package provides utilities for streaming from LangGraph agents,
|
|
5
|
+
handling interrupts, and running agents from the command line.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from deepagent_code.utils import (
|
|
9
|
+
parse_interrupt_value,
|
|
10
|
+
serialize_action_request,
|
|
11
|
+
serialize_review_config,
|
|
12
|
+
process_interrupt,
|
|
13
|
+
extract_todos_from_content,
|
|
14
|
+
extract_reflection_from_content,
|
|
15
|
+
serialize_tool_calls,
|
|
16
|
+
clean_content_from_tool_dicts,
|
|
17
|
+
process_message_content,
|
|
18
|
+
process_tool_message,
|
|
19
|
+
process_ai_message,
|
|
20
|
+
prepare_agent_input,
|
|
21
|
+
stream_graph_updates,
|
|
22
|
+
resume_graph_from_interrupt,
|
|
23
|
+
astream_graph_updates,
|
|
24
|
+
aresume_graph_from_interrupt,
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
__version__ = "0.1.0"
|
|
28
|
+
|
|
29
|
+
__all__ = [
|
|
30
|
+
"parse_interrupt_value",
|
|
31
|
+
"serialize_action_request",
|
|
32
|
+
"serialize_review_config",
|
|
33
|
+
"process_interrupt",
|
|
34
|
+
"extract_todos_from_content",
|
|
35
|
+
"extract_reflection_from_content",
|
|
36
|
+
"serialize_tool_calls",
|
|
37
|
+
"clean_content_from_tool_dicts",
|
|
38
|
+
"process_message_content",
|
|
39
|
+
"process_tool_message",
|
|
40
|
+
"process_ai_message",
|
|
41
|
+
"prepare_agent_input",
|
|
42
|
+
"stream_graph_updates",
|
|
43
|
+
"resume_graph_from_interrupt",
|
|
44
|
+
"astream_graph_updates",
|
|
45
|
+
"aresume_graph_from_interrupt",
|
|
46
|
+
]
|