Spaces:
Runtime error
Runtime error
Add app skeleton and python deps
Browse files- app.py +8 -0
- requirements.txt +7 -0
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
def greet(name):
|
5 |
+
return "Hello " + name + "!!"
|
6 |
+
|
7 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
8 |
+
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio==3.21.0
|
2 |
+
openai-whisper==20230314
|
3 |
+
python-dotenv==1.0.0
|
4 |
+
pyannote.audio==2.1.1
|
5 |
+
torch==1.13.1
|
6 |
+
torchaudio==0.13.1
|
7 |
+
torchvision==0.14.1
|