Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,13 +1,10 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
from gradio_space_ci import enable_space_ci
|
| 4 |
-
|
| 5 |
-
enable_space_ci()
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
def talk(text):
|
| 10 |
-
return
|
| 11 |
|
| 12 |
-
demo = gr.Interface(fn=talk, inputs="text", outputs="
|
| 13 |
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
def talk(text):
|
| 7 |
+
return None
|
| 8 |
|
| 9 |
+
demo = gr.Interface(fn=talk, inputs="text", outputs="text")
|
| 10 |
demo.launch()
|