abidlabs HF staff commited on
Commit
875d2ec
1 Parent(s): 8c5bd97

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +1 -4
run.py CHANGED
@@ -1,7 +1,4 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
-
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ demo = gr.ChatInterface(fn=lambda x,y:x, title="abc")
 
 
 
4
  demo.launch()