Synced repo using 'sync_with_huggingface' Github Action
Browse files- app.py +7 -0
- requirements.txt +1 -0
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
with gr.Blocks() as iface :
|
5 |
+
gr.Markdown("# welcome to Tonic-bot")
|
6 |
+
|
7 |
+
iface.queue().launch()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
gradio
|