-
Notifications
You must be signed in to change notification settings - Fork 317
feat(stt): added Canary-1B STT model support and listing STT models #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…_models to list down all the supported stt models
Awesome! Can you publish as an independent package (maybe |
This is great work I just don't want to have to add a different optional dependency for each possible model. |
Sure! will make it |
@freddyaboulton So are we making a entirely new package, which is not in this repo? Technically we will import from entirely new package? from fastrtc_canary import get_stt_model
. . . Is this what you mention? |
Yes that is what I mean |
Okay! |
Will make a new repo for this package later part of this week |
Awesome! |
Please have a look at this - https://pypi.org/project/fastrtc_canary/ |
What does this PR does?
This PR adds the #167
get_stt_model("canary/1b", lang="en" )
list_stt_models
which allows listing all available Speech-to-Text (STT) models in the FastRTC library.Implementation
Use have to install canary as extra
$ uv add fastrtc"[stt-canary]"
Sample Code