hypercli-sdk 0.8.3__tar.gz → 0.8.6__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 (25) hide show
  1. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/PKG-INFO +1 -1
  2. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/__init__.py +1 -1
  3. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/pyproject.toml +1 -1
  4. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/.gitignore +0 -0
  5. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/README.md +0 -0
  6. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/billing.py +0 -0
  7. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/claw.py +0 -0
  8. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/client.py +0 -0
  9. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/config.py +0 -0
  10. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/files.py +0 -0
  11. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/http.py +0 -0
  12. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/instances.py +0 -0
  13. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/job/__init__.py +0 -0
  14. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/job/base.py +0 -0
  15. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/job/comfyui.py +0 -0
  16. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/job/gradio.py +0 -0
  17. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/jobs.py +0 -0
  18. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/keys.py +0 -0
  19. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/logs.py +0 -0
  20. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/renders.py +0 -0
  21. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/user.py +0 -0
  22. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/hypercli/x402.py +0 -0
  23. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/tests/test_apply_params.py +0 -0
  24. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/tests/test_claw.py +0 -0
  25. {hypercli_sdk-0.8.3 → hypercli_sdk-0.8.6}/tests/test_graph_to_api.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypercli-sdk
3
- Version: 0.8.3
3
+ Version: 0.8.6
4
4
  Summary: Python SDK for HyperCLI - GPU orchestration and LLM API
5
5
  Project-URL: Homepage, https://hypercli.com
6
6
  Project-URL: Documentation, https://docs.hypercli.com
@@ -11,7 +11,7 @@ from .job import BaseJob, ComfyUIJob, GradioJob, apply_params, apply_graph_modes
11
11
  from .logs import LogStream, stream_logs, fetch_logs
12
12
  from .claw import Claw, ClawKey, ClawPlan, ClawModel
13
13
 
14
- __version__ = "0.8.3"
14
+ __version__ = "0.8.6"
15
15
  __all__ = [
16
16
  "HyperCLI",
17
17
  "configure",
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "hypercli-sdk"
7
- version = "0.8.3"
7
+ version = "0.8.6"
8
8
  description = "Python SDK for HyperCLI - GPU orchestration and LLM API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes