hypercli-cli 2026.6.16__tar.gz → 2026.6.26__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.
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/.gitignore +1 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/PKG-INFO +9 -8
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/README.md +5 -4
- hypercli_cli-2026.6.26/hypercli_cli/__init__.py +1 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/agent.py +366 -167
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/agents.py +149 -19
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/cli.py +23 -3
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/embed.py +5 -5
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/llm.py +18 -2
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/memory.py +23 -4
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/onboard.py +14 -9
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/stt.py +1 -1
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/voice.py +4 -4
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/pyproject.toml +4 -4
- hypercli_cli-2026.6.26/tests/integration/test_launch_dryrun.py +74 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_agent_env_resolution.py +10 -10
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_agent_subscribe_command.py +32 -2
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_config_command.py +44 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_exec_shell_dryrun.py +137 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_llm_command.py +21 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_memory_captions.py +38 -1
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_openclaw_config.py +46 -23
- hypercli_cli-2026.6.16/hypercli_cli/__init__.py +0 -1
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/billing.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/comfyui.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/files.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/flow.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/instances.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/jobs.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/keys.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/memory_captions.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/memory_documents.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/output.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/renders.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/tui/__init__.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/tui/job_monitor.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/user.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/hypercli_cli/wallet.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_agents_budget_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_flow_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_flow_visibility.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_jobs_list_tags.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_keys_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_me_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_memory_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_memory_documents.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_status_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_voice_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_wallet_command.py +0 -0
- {hypercli_cli-2026.6.16 → hypercli_cli-2026.6.26}/tests/test_wallet_migration_integration.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hypercli-cli
|
|
3
|
-
Version: 2026.6.
|
|
3
|
+
Version: 2026.6.26
|
|
4
4
|
Summary: CLI for HyperCLI - GPU orchestration and LLM API
|
|
5
5
|
Project-URL: Homepage, https://hypercli.com
|
|
6
6
|
Project-URL: Documentation, https://docs.hypercli.com
|
|
@@ -9,7 +9,7 @@ Author-email: HyperCLI <support@hypercli.com>
|
|
|
9
9
|
License: MIT
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Requires-Dist: httpx>=0.27.0
|
|
12
|
-
Requires-Dist: hypercli-sdk>=2026.6.
|
|
12
|
+
Requires-Dist: hypercli-sdk>=2026.6.26
|
|
13
13
|
Requires-Dist: mutagen>=1.47.0
|
|
14
14
|
Requires-Dist: openai>=2.8.1
|
|
15
15
|
Requires-Dist: pysubs2>=1.8.0
|
|
@@ -20,11 +20,11 @@ Provides-Extra: all
|
|
|
20
20
|
Requires-Dist: argon2-cffi>=25.0.0; extra == 'all'
|
|
21
21
|
Requires-Dist: eth-account>=0.13.0; extra == 'all'
|
|
22
22
|
Requires-Dist: faster-whisper>=1.1.0; extra == 'all'
|
|
23
|
-
Requires-Dist: hypercli-sdk[comfyui]>=2026.6.
|
|
23
|
+
Requires-Dist: hypercli-sdk[comfyui]>=2026.6.26; extra == 'all'
|
|
24
24
|
Requires-Dist: web3>=7.0.0; extra == 'all'
|
|
25
25
|
Requires-Dist: x402[evm,httpx]>=2.0.0; extra == 'all'
|
|
26
26
|
Provides-Extra: comfyui
|
|
27
|
-
Requires-Dist: hypercli-sdk[comfyui]>=2026.6.
|
|
27
|
+
Requires-Dist: hypercli-sdk[comfyui]>=2026.6.26; extra == 'comfyui'
|
|
28
28
|
Provides-Extra: dev
|
|
29
29
|
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
30
30
|
Requires-Dist: ruff>=0.3.0; extra == 'dev'
|
|
@@ -40,7 +40,7 @@ Description-Content-Type: text/markdown
|
|
|
40
40
|
|
|
41
41
|
# hypercli-cli
|
|
42
42
|
|
|
43
|
-
Command-line interface for HyperCLI jobs, flows, x402 pay-per-use launches, and
|
|
43
|
+
Command-line interface for HyperCLI jobs, flows, x402 pay-per-use launches, and HyperCLI checkout tooling.
|
|
44
44
|
|
|
45
45
|
## Install
|
|
46
46
|
|
|
@@ -78,16 +78,17 @@ hyper instances launch nvidia/cuda:12.6.3-base-ubuntu22.04 -g l4 -c "nvidia-smi"
|
|
|
78
78
|
hyper flow text-to-image "a cinematic portrait"
|
|
79
79
|
hyper flow text-to-image "a cinematic portrait" --x402
|
|
80
80
|
|
|
81
|
-
#
|
|
81
|
+
# HyperCLI checkout/config
|
|
82
82
|
hyper agent plans
|
|
83
83
|
hyper agent subscribe basic
|
|
84
84
|
hyper agent activate-code PROMO123
|
|
85
|
-
hyper
|
|
85
|
+
hyper config env
|
|
86
86
|
hyper agent exec <agent_id> "ls -la"
|
|
87
87
|
hyper agent shell <agent_id>
|
|
88
|
+
hyper agents create --index-on-session-start --index-on-search --index-watch
|
|
88
89
|
```
|
|
89
90
|
|
|
90
91
|
## Notes
|
|
91
92
|
|
|
92
93
|
- `hyper llm` command surface has been removed.
|
|
93
|
-
- For inference setup, use
|
|
94
|
+
- For inference setup, use HyperCLI (`hyper config ...`) and your agent/client's OpenAI-compatible configuration.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# hypercli-cli
|
|
2
2
|
|
|
3
|
-
Command-line interface for HyperCLI jobs, flows, x402 pay-per-use launches, and
|
|
3
|
+
Command-line interface for HyperCLI jobs, flows, x402 pay-per-use launches, and HyperCLI checkout tooling.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -38,16 +38,17 @@ hyper instances launch nvidia/cuda:12.6.3-base-ubuntu22.04 -g l4 -c "nvidia-smi"
|
|
|
38
38
|
hyper flow text-to-image "a cinematic portrait"
|
|
39
39
|
hyper flow text-to-image "a cinematic portrait" --x402
|
|
40
40
|
|
|
41
|
-
#
|
|
41
|
+
# HyperCLI checkout/config
|
|
42
42
|
hyper agent plans
|
|
43
43
|
hyper agent subscribe basic
|
|
44
44
|
hyper agent activate-code PROMO123
|
|
45
|
-
hyper
|
|
45
|
+
hyper config env
|
|
46
46
|
hyper agent exec <agent_id> "ls -la"
|
|
47
47
|
hyper agent shell <agent_id>
|
|
48
|
+
hyper agents create --index-on-session-start --index-on-search --index-watch
|
|
48
49
|
```
|
|
49
50
|
|
|
50
51
|
## Notes
|
|
51
52
|
|
|
52
53
|
- `hyper llm` command surface has been removed.
|
|
53
|
-
- For inference setup, use
|
|
54
|
+
- For inference setup, use HyperCLI (`hyper config ...`) and your agent/client's OpenAI-compatible configuration.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2026.6.26"
|