Spaces:
Sleeping
Sleeping
from gradio_client import Client, handle_file | |
def api_gradio_transcribe(url: str): | |
client = Client("hf-audio/whisper-large-v3-turbo") | |
result = client.predict( | |
inputs=handle_file(url), | |
task="transcribe", | |
api_name="/predict" | |
) | |
return result | |