-
Notifications
You must be signed in to change notification settings - Fork 6
Add speech to text sample #24
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
Signed-off-by: Radu Matei <[email protected]>
is there a reason we want to check in the |
Signed-off-by: Radu Matei <[email protected]>
Removed and added it to gitignore. |
Is this example ready to merge? |
The transcription service is a service running the OpenAI Whisper model on an Nvidia RTX 4000 Ada Generation GPU on | ||
an LKE cluster. |
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.
The transcription service is a service running the OpenAI Whisper model on an Nvidia RTX 4000 Ada Generation GPU on | |
an LKE cluster. | |
The transcription service is a service running the OpenAI Whisper model on an | |
Nvidia RTX 4000 Ada Generation GPU on an LKE cluster. |
spacing nit
[variables] | ||
# This is a currently deployed transcription API endpoint | ||
# This may not be available by the time you run this sample. | ||
transcription_api = { default = "http://172.236.120.221:30001/v1/audio/transcriptions" } |
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.
As warned in the comment above, I don't think this service is available as of testing today. The api/transcribe
internal endpoint returns a 504, seen when inspecting the browser console:
/api/transcribe:1
Failed to load resource: the server responded with a status of 504 (Gateway Time-out)
Interestingly, the app logs via spin aka logs
don't show any explicit errors, despite captions/src/index.ts
containing error handling, so that might be another item to revisit.
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.
If we do plan on standing the inferencing service up again and merge this example, we might consider adding minimal 'how to build and deploy' steps here.
No description provided.