Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- src/app.py +3 -5
src/app.py
CHANGED
|
@@ -1,8 +1,6 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def
|
| 4 |
-
return
|
| 5 |
|
| 6 |
-
demo = gr.
|
| 7 |
-
|
| 8 |
-
demo.launch(share=True)
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def slow_echo(message, history):
|
| 4 |
+
return message
|
| 5 |
|
| 6 |
+
demo = gr.ChatInterface(slow_echo).queue().launch()
|
|
|
|
|
|