devduck 1.1.6__py3-none-any.whl → 1.2.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.
Potentially problematic release.
This version of devduck might be problematic. Click here for more details.
- devduck/__init__.py +2 -4
- devduck/_version.py +2 -2
- devduck/tools/__init__.py +48 -22
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/METADATA +1 -1
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/RECORD +9 -9
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/WHEEL +0 -0
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/entry_points.txt +0 -0
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {devduck-1.1.6.dist-info → devduck-1.2.0.dist-info}/top_level.txt +0 -0
devduck/__init__.py
CHANGED
|
@@ -687,8 +687,6 @@ class DevDuck:
|
|
|
687
687
|
server_tools_needed = []
|
|
688
688
|
if servers.get("tcp", {}).get("enabled", False):
|
|
689
689
|
server_tools_needed.append("tcp")
|
|
690
|
-
if servers.get("ws", {}).get("enabled", True):
|
|
691
|
-
server_tools_needed.append("websocket")
|
|
692
690
|
if servers.get("mcp", {}).get("enabled", False):
|
|
693
691
|
server_tools_needed.append("mcp_server")
|
|
694
692
|
if servers.get("ipc", {}).get("enabled", False):
|
|
@@ -697,11 +695,11 @@ class DevDuck:
|
|
|
697
695
|
# Append to default tools if any server tools are needed
|
|
698
696
|
if server_tools_needed:
|
|
699
697
|
server_tools_str = ",".join(server_tools_needed)
|
|
700
|
-
default_tools = f"devduck.tools:system_prompt,fetch_github_tool,{server_tools_str};strands_tools:shell"
|
|
698
|
+
default_tools = f"devduck.tools:system_prompt,fetch_github_tool,websocket,{server_tools_str};strands_tools:shell"
|
|
701
699
|
logger.info(f"Auto-added server tools: {server_tools_str}")
|
|
702
700
|
else:
|
|
703
701
|
default_tools = (
|
|
704
|
-
"devduck.tools:system_prompt,fetch_github_tool;strands_tools:shell"
|
|
702
|
+
"devduck.tools:system_prompt,fetch_github_tool,websocket;strands_tools:shell"
|
|
705
703
|
)
|
|
706
704
|
|
|
707
705
|
tools_config = os.getenv("DEVDUCK_TOOLS", default_tools)
|
devduck/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '1.
|
|
32
|
-
__version_tuple__ = version_tuple = (1,
|
|
31
|
+
__version__ = version = '1.2.0'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 2, 0)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
devduck/tools/__init__.py
CHANGED
|
@@ -15,7 +15,6 @@ from .install_tools import install_tools
|
|
|
15
15
|
from .ipc import ipc
|
|
16
16
|
from .mcp_server import mcp_server
|
|
17
17
|
from .scraper import scraper
|
|
18
|
-
from .speech_to_speech import speech_to_speech
|
|
19
18
|
from .state_manager import state_manager
|
|
20
19
|
from .store_in_kb import store_in_kb
|
|
21
20
|
from .system_prompt import system_prompt
|
|
@@ -24,24 +23,51 @@ from .tray import tray
|
|
|
24
23
|
from .use_github import use_github
|
|
25
24
|
from .websocket import websocket
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
26
|
+
# Optional Tools
|
|
27
|
+
try:
|
|
28
|
+
from .speech_to_speech import speech_to_speech
|
|
29
|
+
|
|
30
|
+
__all__ = [
|
|
31
|
+
"agentcore_agents",
|
|
32
|
+
"agentcore_config",
|
|
33
|
+
"agentcore_invoke",
|
|
34
|
+
"agentcore_logs",
|
|
35
|
+
"ambient",
|
|
36
|
+
"create_subagent",
|
|
37
|
+
"fetch_github_tool",
|
|
38
|
+
"install_tools",
|
|
39
|
+
"ipc",
|
|
40
|
+
"mcp_server",
|
|
41
|
+
"scraper",
|
|
42
|
+
"speech_to_speech",
|
|
43
|
+
"state_manager",
|
|
44
|
+
"store_in_kb",
|
|
45
|
+
"system_prompt",
|
|
46
|
+
"tcp",
|
|
47
|
+
"tray",
|
|
48
|
+
"use_github",
|
|
49
|
+
"websocket",
|
|
50
|
+
]
|
|
51
|
+
except ImportError:
|
|
52
|
+
__all__ = [
|
|
53
|
+
"agentcore_agents",
|
|
54
|
+
"agentcore_config",
|
|
55
|
+
"agentcore_invoke",
|
|
56
|
+
"agentcore_logs",
|
|
57
|
+
"ambient",
|
|
58
|
+
"create_subagent",
|
|
59
|
+
"fetch_github_tool",
|
|
60
|
+
"install_tools",
|
|
61
|
+
"ipc",
|
|
62
|
+
"mcp_server",
|
|
63
|
+
"scraper",
|
|
64
|
+
"state_manager",
|
|
65
|
+
"store_in_kb",
|
|
66
|
+
"system_prompt",
|
|
67
|
+
"tcp",
|
|
68
|
+
"tray",
|
|
69
|
+
"use_github",
|
|
70
|
+
"websocket",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
devduck/__init__.py,sha256=
|
|
1
|
+
devduck/__init__.py,sha256=4yV11upjpY7xL0KZHERZw8zkDJTk6AlPV5qZve0Q7ho,75863
|
|
2
2
|
devduck/__main__.py,sha256=aeF2RR4k7lzSR2X1QKV9XQPCKhtsH0JYUv2etBBqmL0,145
|
|
3
|
-
devduck/_version.py,sha256
|
|
3
|
+
devduck/_version.py,sha256=-uLONazCO1SzFfcY-K6A1keL--LIVfTYccGX6ciADac,704
|
|
4
4
|
devduck/agentcore_handler.py,sha256=0DKJTTjoH9P8a70G0f5dOIIwy6bjqaN46voAWaSOpDY,2221
|
|
5
5
|
devduck/test_redduck.py,sha256=ILtKKMuoyVfmhnibmbojpbOsqbcKooZv4j9qtE2LWdw,1750
|
|
6
|
-
devduck/tools/__init__.py,sha256=
|
|
6
|
+
devduck/tools/__init__.py,sha256=xoLphnkrIo1vwXohLwHxHgAtCNaTfAtPv-oSS7JMu8Q,1744
|
|
7
7
|
devduck/tools/_ambient_input.py,sha256=3lBgLO81BvkxjgTrQc-EuxNLXmO1oPUt2Ysg1jR4Fsk,13897
|
|
8
8
|
devduck/tools/_tray_app.py,sha256=E4rtJcegRsBs_FdQVGdA-0Ax7uxVb6AbuyqjwCArHj0,19405
|
|
9
9
|
devduck/tools/agentcore_agents.py,sha256=fiDNhl7R2tVbp1mEOySJTfGXwap5q3COenYOjiJDE_g,6488
|
|
@@ -25,9 +25,9 @@ devduck/tools/tcp.py,sha256=w2m_Jf6vZ4NYu0AwgZd7C7eKs4No2EVHZ2WYIl_Bt0A,22017
|
|
|
25
25
|
devduck/tools/tray.py,sha256=FgVhUtLdsdv5_ERK-RyAIpDE8Zb0IfoqhHQdwMxrHUQ,7547
|
|
26
26
|
devduck/tools/use_github.py,sha256=nr3JSGk48mKUobpgW__2gu6lFyUj93a1XRs3I6vH8W4,13682
|
|
27
27
|
devduck/tools/websocket.py,sha256=A8bqgdDZs8hcf2HctkJzQOzMvb5mXUC7YZ-xqkOyn94,16959
|
|
28
|
-
devduck-1.
|
|
29
|
-
devduck-1.
|
|
30
|
-
devduck-1.
|
|
31
|
-
devduck-1.
|
|
32
|
-
devduck-1.
|
|
33
|
-
devduck-1.
|
|
28
|
+
devduck-1.2.0.dist-info/licenses/LICENSE,sha256=UANcoWwfVeuM9597WUkjEQbzqIUH0bJoE9Tpwgj_LvU,11345
|
|
29
|
+
devduck-1.2.0.dist-info/METADATA,sha256=zakYOaX1-m8D1r1I8-2blUX_NrbyhylpUYQqnCBFPPo,24090
|
|
30
|
+
devduck-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
+
devduck-1.2.0.dist-info/entry_points.txt,sha256=PJ8gvdi2MnKEK8yCwcmZDeLQ-lx94EV_jp4-v8AKuTA,58
|
|
32
|
+
devduck-1.2.0.dist-info/top_level.txt,sha256=ySXWlVronp8xHYfQ_Hdfr463e0EnbWuqyuxs94EU7yk,8
|
|
33
|
+
devduck-1.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|