tonyassi commited on
Commit
1163202
·
1 Parent(s): ba4d81f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
5
 
6
  iface = gr.Interface(fn=greet,
7
  inputs=[gr.Textbox(label='Description'),
 
1
  import gradio as gr
2
 
3
+ def greet(description,color):
4
+ print(color)
5
+ return description
6
 
7
  iface = gr.Interface(fn=greet,
8
  inputs=[gr.Textbox(label='Description'),