Ceetar commited on
Commit
8e0ad92
·
1 Parent(s): d3811c5
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
 
3
  #generates an AI description of your character
4
- def describe(name):
5
  return "Hello " + name + "!!"
6
 
7
- iface = gr.Interface(fn=describe, inputs=gr.Textbox(label="HI"), outputs="text")
8
  iface.launch()
 
1
  import gradio as gr
2
 
3
  #generates an AI description of your character
4
+ def describe(names):
5
  return "Hello " + name + "!!"
6
 
7
+ iface = gr.Interface(fn=describe, inputs=gr.Textbox(label="HI",show_label=True), outputs="text")
8
  iface.launch()