not-lain commited on
Commit
55d82ce
·
verified ·
1 Parent(s): 349919f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
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 "the user said "+ text
11
 
12
- demo = gr.Interface(fn=talk, inputs="text", outputs="label")
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()