pavan2606 commited on
Commit
e7a6258
·
verified ·
1 Parent(s): 43ac713

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -4
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
- image_mode=gr.Interface(fn = None,
49
- inputs = [],
50
- outputs = "text",
 
 
 
 
51
  description = description,
52
  theme='gradio/monochrome',
53
  title=title,
54
  allow_flagging='never')
55
- image_mode.launch()
 
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()