vocal-cli 0.3.6__tar.gz → 0.3.7__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.
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/PKG-INFO +3 -3
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/pyproject.toml +3 -3
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/vocal_cli/__init__.py +1 -1
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/vocal_cli/main.py +2 -2
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/.gitignore +0 -0
- {vocal_cli-0.3.6 → vocal_cli-0.3.7}/MANIFEST.in +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vocal-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
4
4
|
Summary: CLI tool for Vocal - Ollama-style Voice Model Management
|
|
5
5
|
Project-URL: Homepage, https://github.com/niradler/vocal
|
|
6
6
|
Project-URL: Documentation, https://github.com/niradler/vocal/tree/master/docs
|
|
@@ -23,6 +23,6 @@ Requires-Dist: rich>=14.3.3
|
|
|
23
23
|
Requires-Dist: sounddevice>=0.5.5
|
|
24
24
|
Requires-Dist: typer>=0.24.1
|
|
25
25
|
Requires-Dist: uvicorn>=0.41.0
|
|
26
|
-
Requires-Dist: vocal-core>=0.3.
|
|
27
|
-
Requires-Dist: vocal-sdk>=0.3.
|
|
26
|
+
Requires-Dist: vocal-core>=0.3.7
|
|
27
|
+
Requires-Dist: vocal-sdk>=0.3.7
|
|
28
28
|
Requires-Dist: websockets>=16.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vocal-cli"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.7"
|
|
4
4
|
description = "CLI tool for Vocal - Ollama-style Voice Model Management"
|
|
5
5
|
requires-python = ">=3.11"
|
|
6
6
|
license = { text = "SSPL-1.0" }
|
|
@@ -19,8 +19,8 @@ classifiers = [
|
|
|
19
19
|
"Topic :: Utilities",
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
|
-
"vocal-core>=0.3.
|
|
23
|
-
"vocal-sdk>=0.3.
|
|
22
|
+
"vocal-core>=0.3.7",
|
|
23
|
+
"vocal-sdk>=0.3.7",
|
|
24
24
|
"typer>=0.24.1",
|
|
25
25
|
"rich>=14.3.3",
|
|
26
26
|
"uvicorn>=0.41.0",
|
|
@@ -830,7 +830,7 @@ def listen(
|
|
|
830
830
|
raise typer.Exit(1)
|
|
831
831
|
device = selected
|
|
832
832
|
if models:
|
|
833
|
-
selected_model = _model_wizard(api_url, require_streaming=
|
|
833
|
+
selected_model = _model_wizard(api_url, require_streaming=stream)
|
|
834
834
|
if selected_model is None:
|
|
835
835
|
raise typer.Exit(1)
|
|
836
836
|
model = selected_model
|
|
@@ -919,7 +919,7 @@ def chat(
|
|
|
919
919
|
raise typer.Exit(1)
|
|
920
920
|
output_device = selected_out
|
|
921
921
|
if models:
|
|
922
|
-
selected_model = _model_wizard(api_url, require_streaming=
|
|
922
|
+
selected_model = _model_wizard(api_url, require_streaming=False)
|
|
923
923
|
if selected_model is None:
|
|
924
924
|
raise typer.Exit(1)
|
|
925
925
|
model = selected_model
|
|
File without changes
|
|
File without changes
|