aliabd HF staff commited on
Commit
3fc6739
1 Parent(s): c4dc82a

Delete app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +0 -17
app.py DELETED
@@ -1,17 +0,0 @@
1
- import gradio as gr
2
- import os
3
-
4
- # save your HF API token from https:/hf.co/settings/tokens as an env variable to avoid rate limiting
5
- auth_token = os.getenv("auth_token")
6
-
7
- # automatically load the interface from a HF model
8
- # you can remove the api_key parameter if you don't care about rate limiting.
9
- demo = gr.Interface.load(
10
- "huggingface/facebook/wav2vec2-base-960h",
11
- title="Speech-to-text",
12
- inputs="mic",
13
- description="Let me try to guess what you're saying!",
14
- api_key=auth_token
15
- )
16
-
17
- demo.launch()