Skip to content

Commit 70e009d

Browse files
committed
Fix Whisper install (PEP 668, real venv install, live progress) and bundle icons
1 parent eac2eac commit 70e009d

10 files changed

Lines changed: 295 additions & 183 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ For the local Whisper path, `./setup.sh` now handles the full repo-local setup:
277277
WHISPER_SEGMENT_MS=4000
278278
```
279279

280-
4. Restart the app - microphone buttons will now appear automatically
280+
4. The app picks up changes immediately — no restart needed. The microphone buttons appear as soon as the config is valid.
281281

282282
## 🎮 How to Use
283283

assests/vendor/fontawesome/all.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
105 KB
Binary file not shown.
24.4 KB
Binary file not shown.
147 KB
Binary file not shown.

onboarding.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Welcome to OpenCluely</title>
7-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
7+
<link rel="stylesheet" href="./assests/vendor/fontawesome/all.min.css">
88
<style>
99
*, *::before, *::after {
1010
margin: 0;

src/core/first-run.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,18 @@ class FirstRunManager {
123123
}
124124
return [
125125
'# OpenCluely configuration',
126-
'# Add your Google Gemini API key below, then restart the app.',
126+
'# Add your Google Gemini API key belowthe app picks it up immediately.',
127127
'# Get a key from: https://aistudio.google.com/',
128128
'',
129129
'GEMINI_API_KEY=your_gemini_api_key_here',
130130
'',
131+
'# Speech provider: "whisper" (local) or "azure" (cloud).',
132+
'# WHISPER_COMMAND is auto-set to the project-local venv when you',
133+
'# install Whisper through the onboarding wizard, so no PATH change',
134+
'# or restart is needed.',
131135
'SPEECH_PROVIDER=whisper',
132136
'WHISPER_COMMAND=whisper',
137+
'WHISPER_MODEL_DIR=.whisper-models',
133138
'WHISPER_MODEL=turbo',
134139
'WHISPER_LANGUAGE=en',
135140
'WHISPER_SEGMENT_MS=4000',

0 commit comments

Comments
 (0)