Updated
Browse files
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(
|
|
|
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)
|