Update app.py
Browse files
app.py
CHANGED
@@ -45,11 +45,15 @@ Let's give a round of applause to the brilliant minds who made it all happen:
|
|
45 |
|
46 |
|
47 |
""").value
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
51 |
description = description,
|
52 |
theme='gradio/monochrome',
|
53 |
title=title,
|
54 |
allow_flagging='never')
|
55 |
-
|
|
|
45 |
|
46 |
|
47 |
""").value
|
48 |
+
|
49 |
+
def greet(name):
|
50 |
+
pass
|
51 |
+
home_mode=gr.Interface(fn = greet,
|
52 |
+
inputs = gr.Textbox(label="Hey there! Ready to spice up your title game? Drop your name, and let's turn it into a giggling sensation!"
|
53 |
+
),
|
54 |
+
outputs = None,
|
55 |
description = description,
|
56 |
theme='gradio/monochrome',
|
57 |
title=title,
|
58 |
allow_flagging='never')
|
59 |
+
home_mode.launch()
|