GSridhar1982 commited on
Commit
78d06a0
·
verified ·
1 Parent(s): 8a9c29d
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -18,7 +18,9 @@ def generate_subject(email_body):
18
  iface = gr.Interface(
19
  fn=generate_subject,
20
  inputs="textbox",
21
- outputs="textbox"
 
 
22
  )
23
 
24
- iface.launch(debug=True)
 
18
  iface = gr.Interface(
19
  fn=generate_subject,
20
  inputs="textbox",
21
+ outputs="textbox",
22
+ title="AIML Email Subject Generator",
23
+ description="Given the email body, it generates the email subject"
24
  )
25
 
26
+ iface.launch(share=True)