Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def greet(
|
4 |
-
|
|
|
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'),
|