mle-kit-mcp 0.1.1__tar.gz → 0.1.2__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.1.1 → mle_kit_mcp-0.1.2}/PKG-INFO +3 -1
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/tools/llm_proxy.py +1 -1
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/PKG-INFO +3 -1
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/SOURCES.txt +1 -1
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/requires.txt +2 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/pyproject.toml +3 -1
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/LICENSE +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/README.md +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/__init__.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/__main__.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/files.py +0 -0
- /mle_kit_mcp-0.1.1/mle_kit_mcp/llm_proxy_source.py → /mle_kit_mcp-0.1.2/mle_kit_mcp/llm_proxy.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/py.typed +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/server.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/tools/__init__.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/tools/bash.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/tools/remote_gpu.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/tools/text_editor.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp/utils.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/dependency_links.txt +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/entry_points.txt +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/mle_kit_mcp.egg-info/top_level.txt +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/setup.cfg +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/tests/test_bash.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/tests/test_llm_proxy.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/tests/test_text_editor.py +0 -0
- {mle_kit_mcp-0.1.1 → mle_kit_mcp-0.1.2}/tests/test_truncate_context.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mle-kit-mcp
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: MCP server that provides different tools for MLE
|
5
5
|
Author-email: Ilya Gusev <phoenixilya@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/IlyaGusev/mle_kit_mcp
|
@@ -14,6 +14,8 @@ Requires-Dist: mcp>=1.9.2
|
|
14
14
|
Requires-Dist: fire>=0.7.0
|
15
15
|
Requires-Dist: docker>=7.1.0
|
16
16
|
Requires-Dist: vastai-sdk==0.1.16
|
17
|
+
Requires-Dist: openai>=1.102.0
|
18
|
+
Requires-Dist: fastapi>=0.116.1
|
17
19
|
Dynamic: license-file
|
18
20
|
|
19
21
|
# MLE KIT MCP
|
@@ -18,7 +18,7 @@ from mle_kit_mcp.tools.remote_gpu import (
|
|
18
18
|
send_rsync as _remote_send_rsync,
|
19
19
|
)
|
20
20
|
|
21
|
-
INPUT_SCRIPT_FILE_NAME = "
|
21
|
+
INPUT_SCRIPT_FILE_NAME = "llm_proxy.py"
|
22
22
|
OUTPUT_SCRIPT_FILE_NAME = "llm_proxy.py"
|
23
23
|
DEPENDENCIES = "fastapi uvicorn httpx openai fire"
|
24
24
|
START_TIMEOUT = 30
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mle-kit-mcp
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: MCP server that provides different tools for MLE
|
5
5
|
Author-email: Ilya Gusev <phoenixilya@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/IlyaGusev/mle_kit_mcp
|
@@ -14,6 +14,8 @@ Requires-Dist: mcp>=1.9.2
|
|
14
14
|
Requires-Dist: fire>=0.7.0
|
15
15
|
Requires-Dist: docker>=7.1.0
|
16
16
|
Requires-Dist: vastai-sdk==0.1.16
|
17
|
+
Requires-Dist: openai>=1.102.0
|
18
|
+
Requires-Dist: fastapi>=0.116.1
|
17
19
|
Dynamic: license-file
|
18
20
|
|
19
21
|
# MLE KIT MCP
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mle-kit-mcp"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.2"
|
8
8
|
description = "MCP server that provides different tools for MLE"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [
|
@@ -21,6 +21,8 @@ dependencies = [
|
|
21
21
|
"fire>=0.7.0",
|
22
22
|
"docker>=7.1.0",
|
23
23
|
"vastai-sdk==0.1.16",
|
24
|
+
"openai>=1.102.0",
|
25
|
+
"fastapi>=0.116.1",
|
24
26
|
]
|
25
27
|
|
26
28
|
[dependency-groups]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/mle_kit_mcp-0.1.1/mle_kit_mcp/llm_proxy_source.py → /mle_kit_mcp-0.1.2/mle_kit_mcp/llm_proxy.py
RENAMED
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
|