remove tip label from inputs field
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def summarize(text):
|
|
18 |
# Gradio interface
|
19 |
model = gr.Interface(
|
20 |
fn=summarize,
|
21 |
-
inputs=gr.Textbox(lines=6, placeholder="Enter your text here..."
|
22 |
outputs=gr.Textbox(label="Summary", lines=6),
|
23 |
title="Beemmary 🐝",
|
24 |
description="Summarize your day-to-day conversations, emails, or customer support chats! \n\nTip: Try to input detailed conversations or emails for more accurate summaries.",
|
|
|
18 |
# Gradio interface
|
19 |
model = gr.Interface(
|
20 |
fn=summarize,
|
21 |
+
inputs=gr.Textbox(lines=6, placeholder="Enter your text here..."),
|
22 |
outputs=gr.Textbox(label="Summary", lines=6),
|
23 |
title="Beemmary 🐝",
|
24 |
description="Summarize your day-to-day conversations, emails, or customer support chats! \n\nTip: Try to input detailed conversations or emails for more accurate summaries.",
|