controlmt 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.
- {controlmt-0.1.1 → controlmt-0.1.2}/PKG-INFO +1 -1
- controlmt-0.1.2/src/controlmt/_version.py +1 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt/device.py +2 -1
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt.egg-info/PKG-INFO +1 -1
- controlmt-0.1.1/src/controlmt/_version.py +0 -1
- {controlmt-0.1.1 → controlmt-0.1.2}/README.md +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/pyproject.toml +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/setup.cfg +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt/__init__.py +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt/batching.py +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt/client.py +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt.egg-info/SOURCES.txt +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt.egg-info/dependency_links.txt +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt.egg-info/requires.txt +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/src/controlmt.egg-info/top_level.txt +0 -0
- {controlmt-0.1.1 → controlmt-0.1.2}/tests/test_client.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.2"
|
|
@@ -113,7 +113,8 @@ def detect_libraries() -> dict:
|
|
|
113
113
|
"""Probe what's installed. Used for the SDK's status banner + auto-picking
|
|
114
114
|
code paths (e.g. if onnxruntime is present, future ONNX backend can be used)."""
|
|
115
115
|
out = {}
|
|
116
|
-
for name in ("torch", "transformers", "
|
|
116
|
+
for name in ("torch", "transformers", "sentencepiece", "safetensors",
|
|
117
|
+
"huggingface_hub", "accelerate", "bitsandbytes", "onnxruntime"):
|
|
117
118
|
try:
|
|
118
119
|
mod = __import__(name)
|
|
119
120
|
out[name] = getattr(mod, "__version__", "?")
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.1"
|
|
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
|