Views
No views yet
1from asr_streaming import StreamingConfig, StreamingBackend
2
3# Create config with HuggingFace repository
4config = StreamingConfig(
5 use_huggingface=True,
6 huggingface_repo="TheStageAI/whisper-medium"
7)
8
9# Initialize the backend
10backend = StreamingBackend(config)
11
12# Now use the backend as normal