Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
coderai
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexlab
coderai
Commits
4c24c7b9
Commit
4c24c7b9
authored
Mar 09, 2026
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add debug output for whispercpp import errors
parent
966fad45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
coderai
coderai
+4
-4
No files found.
coderai
View file @
4c24c7b9
...
...
@@ -3875,8 +3875,8 @@ def main():
elif os.path.exists('
/
dev
/
dri
'):
whisper_vulkan_available = True
print(f"Whisper Vulkan: Auto-detected GPU, will use device {whisper_vulkan_device}")
except ImportError:
p
ass
except ImportError
as e
:
p
rint(f"Debug: whispercpp import failed: {e}")
try:
import whispercpp
...
...
@@ -3941,9 +3941,9 @@ def main():
else:
print(f"Warning: Could not pre-load audio model with whispercpp: {e}")
print("Audio model will load on-demand when transcription is requested.")
except ImportError:
except ImportError
as e
:
# Neither faster-whisper nor whispercpp available
print(
"Warning: No audio transcription library available.
")
print(
f"Warning: No audio transcription library available: {e}
")
print("Options:")
print(" 1. Install PyTorch + faster-whisper: pip install torch faster-whisper")
print(" 2. Use a built-in whispercpp model: --audio-model base")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment