mle-kit-mcp 0.0.6__tar.gz → 0.0.8__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.
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/PKG-INFO +1 -1
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/tools/remote_gpu.py +2 -5
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/PKG-INFO +1 -1
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/pyproject.toml +1 -1
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/LICENSE +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/README.md +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/__init__.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/__main__.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/files.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/py.typed +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/server.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/tools/__init__.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/tools/bash.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/tools/text_editor.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp/utils.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/SOURCES.txt +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/dependency_links.txt +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/entry_points.txt +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/requires.txt +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/mle_kit_mcp.egg-info/top_level.txt +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/setup.cfg +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/tests/test_bash.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/tests/test_text_editor.py +0 -0
- {mle_kit_mcp-0.0.6 → mle_kit_mcp-0.0.8}/tests/test_truncate_context.py +0 -0
@@ -126,10 +126,7 @@ def run_command(
|
|
126
126
|
except subprocess.TimeoutExpired:
|
127
127
|
raise Exception(
|
128
128
|
f"Command timed out after {timeout} seconds: {command};\n"
|
129
|
-
f"
|
130
|
-
f"Captured output: {result.stdout}\n"
|
131
|
-
f"Captured error: {result.stderr}\n"
|
132
|
-
f"You can increase the timeout by setting the timeout parameter to a higher value."
|
129
|
+
f"You can increase the timeout by changing the parameter of the tool call."
|
133
130
|
)
|
134
131
|
return result
|
135
132
|
|
@@ -286,7 +283,7 @@ def init_all() -> None:
|
|
286
283
|
assert _instance_info, "Failed to connect to a remote instance! Try again"
|
287
284
|
|
288
285
|
|
289
|
-
def remote_bash(command: str, timeout:
|
286
|
+
def remote_bash(command: str, timeout: int = 60) -> str:
|
290
287
|
"""
|
291
288
|
Run commands in a bash shell on a remote machine with GPU cards.
|
292
289
|
When invoking this tool, the contents of the "command" parameter does NOT need to be XML-escaped.
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|