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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vocal-cli
3
- Version: 0.3.6
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.6
27
- Requires-Dist: vocal-sdk>=0.3.6
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.6"
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.6",
23
- "vocal-sdk>=0.3.6",
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",
@@ -4,4 +4,4 @@ Vocal CLI - Command-line interface for Vocal Speech AI Platform
4
4
  This CLI provides Ollama-style commands for model management and audio transcription.
5
5
  """
6
6
 
7
- __version__ = "0.3.6"
7
+ __version__ = "0.3.7"
@@ -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=True)
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=True)
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