-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add api docs for audio-to-text pipeline #594
Conversation
{ | ||
"pipeline": "audio-to-text", | ||
"model_id": "openai/whisper-large-v3", | ||
"price_per_unit": 12882811, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rickstaa Curious about your thoughts on pricing. The audio-to-text pipeline uses milliseconds as the unit (second * 1000)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eliteprox I like the pricing per millisecond 👍🏻. The pricing seems a bit low, but that's fine since we can let the market take effect. With the current pricing, it would cost 12882811*1000*60*10**-18*3205.48 = $0.0025
per minute of audio, whereas OpenAI charges $0.006
, making us very competitive.
This commit applies some small audio-to-text documentation improvements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks!
adds api docs for the speech-to-text pipeline using
openai/whisper-large-v3
model. These changes are needed for livepeer/go-livepeer#3078