mle-kit-mcp 1.1.0__tar.gz → 1.1.1__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.
Files changed (29) hide show
  1. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/PKG-INFO +1 -1
  2. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/remote_gpu.py +2 -2
  3. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/PKG-INFO +1 -1
  4. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/pyproject.toml +1 -1
  5. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/LICENSE +0 -0
  6. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/README.md +0 -0
  7. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/__init__.py +0 -0
  8. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/__main__.py +0 -0
  9. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/files.py +0 -0
  10. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/llm_proxy.py +0 -0
  11. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/py.typed +0 -0
  12. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/server.py +0 -0
  13. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/__init__.py +0 -0
  14. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/bash.py +0 -0
  15. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/file_system.py +0 -0
  16. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/llm_proxy.py +0 -0
  17. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/tools/text_editor.py +0 -0
  18. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp/utils.py +0 -0
  19. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/SOURCES.txt +0 -0
  20. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/dependency_links.txt +0 -0
  21. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/entry_points.txt +0 -0
  22. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/requires.txt +0 -0
  23. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/mle_kit_mcp.egg-info/top_level.txt +0 -0
  24. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/setup.cfg +0 -0
  25. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/tests/test_bash.py +0 -0
  26. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/tests/test_file_system.py +0 -0
  27. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/tests/test_llm_proxy.py +0 -0
  28. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/tests/test_text_editor.py +0 -0
  29. {mle_kit_mcp-1.1.0 → mle_kit_mcp-1.1.1}/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: 1.1.0
3
+ Version: 1.1.1
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
@@ -15,8 +15,8 @@ from vastai_sdk import VastAI # type: ignore
15
15
  from mle_kit_mcp.files import get_workspace_dir
16
16
 
17
17
  BASE_IMAGE = "phoenix120/holosophos_mle"
18
- DEFAULT_GPU_TYPE = "RTX_3090"
19
- GLOBAL_TIMEOUT = 43200
18
+ DEFAULT_GPU_TYPE = os.getenv("GPU_TYPE", "RTX_3090")
19
+ GLOBAL_TIMEOUT = 86400
20
20
  VAST_AI_GREETING = """Welcome to vast.ai. If authentication fails, try again after a few seconds, and double check your ssh key.
21
21
  Have fun!"""
22
22
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mle-kit-mcp
3
- Version: 1.1.0
3
+ Version: 1.1.1
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mle-kit-mcp"
7
- version = "1.1.0"
7
+ version = "1.1.1"
8
8
  description = "MCP server that provides different tools for MLE"
9
9
  readme = "README.md"
10
10
  authors = [
File without changes
File without changes
File without changes