gradioTest1 / app.py
jaumaras's picture
Update app.py
c2871ad
raw
history blame contribute delete
540 Bytes
import gradio as gr
import os
# save your HF API token from https:/hf.co/settings/tokens as an env variable to avoid rate limiting
auth_token = os.getenv("auth_token")
#gr.api_name="MyNameApiVamooo"
# automatically load the interface from a HF model
# you can remove the api_key parameter if you don't care about rate limiting.
demo = gr.load(
"huggingface/facebook/wav2vec2-base-960h",
title="Speech-to-text",
inputs="mic",
description="Let me try to guess what you're saying!",
hf_token=auth_token
)
demo.launch()