supervoxtral 0.1.2__tar.gz → 0.1.3__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.
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/PKG-INFO +1 -1
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/README.md +7 -8
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/pyproject.toml +1 -1
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/ui/qt_app.py +11 -11
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/.gitignore +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/AGENTS.md +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/LICENSE +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/logs/.gitkeep +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/macos-shortcut.png +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/notes.md +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/prompt/.gitkeep +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/recordings/.gitkeep +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/supervoxtral.gif +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/__init__.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/cli.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/__init__.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/audio.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/clipboard.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/config.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/pipeline.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/prompt.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/core/storage.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/providers/__init__.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/providers/base.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/svx/providers/mistral.py +0 -0
- {supervoxtral-0.1.2 → supervoxtral-0.1.3}/transcripts/.gitkeep +0 -0
|
@@ -22,16 +22,17 @@ The GUI is minimal, launches fast, and can be bound to a system hotkey. Upon sto
|
|
|
22
22
|
|
|
23
23
|
The package is available on PyPI. We recommend using `uv` (a fast Python package installer) for a simple, global tool installation—no virtual environment setup required.
|
|
24
24
|
|
|
25
|
-
- For core CLI functionality:
|
|
26
|
-
```
|
|
27
|
-
uv tool install supervoxtral
|
|
28
|
-
```
|
|
29
25
|
|
|
30
26
|
- For GUI support (includes PySide6):
|
|
31
27
|
```
|
|
32
28
|
uv tool install "supervoxtral[gui]"
|
|
33
29
|
```
|
|
34
30
|
|
|
31
|
+
- For core CLI only functionality:
|
|
32
|
+
```
|
|
33
|
+
uv tool install supervoxtral
|
|
34
|
+
```
|
|
35
|
+
|
|
35
36
|
This installs the `svx` command globally. If you don't have `uv`, install it first via `curl -LsSf https://astral.sh/uv/install.sh | sh` (or from https://docs.astral.sh/uv/getting-started/installation/).
|
|
36
37
|
|
|
37
38
|
**Alternative: Using pip with a virtual environment**
|
|
@@ -53,13 +54,10 @@ If you prefer not to use uv, you can install via pip in a virtual environment:
|
|
|
53
54
|
```
|
|
54
55
|
|
|
55
56
|
2. Install the package:
|
|
56
|
-
```
|
|
57
|
-
pip install supervoxtral
|
|
58
|
-
```
|
|
59
57
|
|
|
60
58
|
For GUI support (includes PySide6):
|
|
61
59
|
```
|
|
62
|
-
pip install supervoxtral[gui]
|
|
60
|
+
pip install "supervoxtral[gui]"
|
|
63
61
|
```
|
|
64
62
|
|
|
65
63
|
This installs the `svx` command within the virtual environment. Make sure to activate the environment before running `svx`.
|
|
@@ -228,6 +226,7 @@ svx record [OPTIONS]
|
|
|
228
226
|
|
|
229
227
|
## Changelog
|
|
230
228
|
|
|
229
|
+
- 0.1.3: Minor sytle update
|
|
231
230
|
- 0.1.2: Interactive mode in GUI (choose transcribe / prompt / cancel while recording)
|
|
232
231
|
- 0.1.1: Minor updates to default config and default prompt
|
|
233
232
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "supervoxtral"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "CLI/GUI audio recorder and transcription client using Mistral Voxtral (chat with audio and transcription)."
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -65,32 +65,32 @@ QLabel#info_label {
|
|
|
65
65
|
|
|
66
66
|
/* Stop button */
|
|
67
67
|
QPushButton {
|
|
68
|
-
background-color: #
|
|
68
|
+
background-color: #1e40af;
|
|
69
69
|
color: #ffffff;
|
|
70
70
|
border: none;
|
|
71
|
-
border-radius:
|
|
72
|
-
padding: 8px
|
|
71
|
+
border-radius: 2px;
|
|
72
|
+
padding: 4px 8px;
|
|
73
73
|
margin: 6px;
|
|
74
|
-
min-width:
|
|
74
|
+
min-width: 60px;
|
|
75
75
|
}
|
|
76
76
|
QPushButton:disabled {
|
|
77
|
-
background-color: #
|
|
78
|
-
color: #
|
|
77
|
+
background-color: #374151;
|
|
78
|
+
color: #9ca3af;
|
|
79
79
|
}
|
|
80
80
|
QPushButton:hover {
|
|
81
|
-
background-color: #
|
|
81
|
+
background-color: #1d4ed8;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
/* Cancel button */
|
|
85
85
|
QPushButton#cancel_btn {
|
|
86
|
-
background-color: #
|
|
86
|
+
background-color: #b91c1c;
|
|
87
87
|
}
|
|
88
88
|
QPushButton#cancel_btn:hover {
|
|
89
|
-
background-color: #
|
|
89
|
+
background-color: #ef4444;
|
|
90
90
|
}
|
|
91
91
|
QPushButton#cancel_btn:disabled {
|
|
92
|
-
background-color: #
|
|
93
|
-
color: #
|
|
92
|
+
background-color: #4b5563;
|
|
93
|
+
color: #9ca3af;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
/* Small window border effect (subtle) */
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|