Decided on Parakeet ONNX Runtime. Works pretty great. Realtime voice chat possible now. UX lacking.

This commit is contained in:
2026-01-19 00:29:44 +02:00
parent 0a8910fff8
commit 362108f4b0
34 changed files with 4593 additions and 73 deletions

15
stt-parakeet/example.py Normal file
View File

@@ -0,0 +1,15 @@
"""
Simple example of using the ASR pipeline
"""
from asr.asr_pipeline import ASRPipeline
# Initialize pipeline (will download model on first run)
print("Loading ASR model...")
pipeline = ASRPipeline()
# Transcribe a WAV file
print("\nTranscribing audio...")
text = pipeline.transcribe("test.wav")
print("\nTranscription:")
print(text)