inferencesh 0.2.31__py3-none-any.whl → 0.4.29__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.
inferencesh/__init__.py CHANGED
@@ -17,6 +17,7 @@ from .models import (
17
17
  timing_context,
18
18
  )
19
19
  from .utils import StorageDir, download
20
+ from .client import Inference, AsyncInference, UploadFileOptions, TaskStatus
20
21
 
21
22
  __all__ = [
22
23
  "BaseApp",
@@ -33,4 +34,8 @@ __all__ = [
33
34
  "timing_context",
34
35
  "StorageDir",
35
36
  "download",
37
+ "Inference",
38
+ "AsyncInference",
39
+ "UploadFileOptions",
40
+ "TaskStatus",
36
41
  ]