mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-30 19:02:16 +00:00
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
310 B
Python
11 lines
310 B
Python
"""Speech subsystem — speech-to-text backends."""
|
|
|
|
import importlib
|
|
|
|
# Optional backends — each registers itself via @SpeechRegistry.register()
|
|
for _mod in ("faster_whisper", "openai_whisper", "deepgram"):
|
|
try:
|
|
importlib.import_module(f".{_mod}", __name__)
|
|
except ImportError:
|
|
pass
|