Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,5 +12,5 @@ def welcome_message(greeting, mood):
|
|
12 |
iface1 = gr.Interface(greet, "text", "text", title="Step 1: Enter Your Name")
|
13 |
iface2 = gr.Interface(welcome_message, ["text", gr.inputs.Radio(choices=["Happy", "Sad"])], "text", title="Step 2: Select Your Mood")
|
14 |
|
15 |
-
iface1.launch(
|
16 |
iface2.launch()
|
|
|
12 |
iface1 = gr.Interface(greet, "text", "text", title="Step 1: Enter Your Name")
|
13 |
iface2 = gr.Interface(welcome_message, ["text", gr.inputs.Radio(choices=["Happy", "Sad"])], "text", title="Step 2: Select Your Mood")
|
14 |
|
15 |
+
iface1.launch(inline=False)
|
16 |
iface2.launch()
|