Update app.py
Browse files
app.py
CHANGED
@@ -41,13 +41,14 @@ def summary(input, summary_type="medium"):
|
|
41 |
output = text_summary(input, max_length=max_output_tokens, min_length=min_output_tokens, truncation=True)
|
42 |
return output[0]['summary_text']
|
43 |
|
44 |
-
#
|
45 |
-
def
|
46 |
"""Save the summarized text to a file."""
|
47 |
with open("summary_output.txt", "w") as file:
|
48 |
file.write(summary_text)
|
49 |
return "Summary saved to 'summary_output.txt'."
|
50 |
|
|
|
51 |
gr.close_all()
|
52 |
|
53 |
# Create the Gradio interface
|
@@ -59,7 +60,7 @@ demo = gr.Interface(
|
|
59 |
],
|
60 |
outputs=[
|
61 |
gr.Textbox(label="SUMMARIZED TEXT", lines=10, placeholder="Your summarized text will appear here."),
|
62 |
-
gr.Button("
|
63 |
],
|
64 |
title="PAVISHINI @ GenAI Project 1: Text Summarizer",
|
65 |
description=(
|
@@ -71,4 +72,3 @@ demo = gr.Interface(
|
|
71 |
|
72 |
demo.launch()
|
73 |
|
74 |
-
|
|
|
41 |
output = text_summary(input, max_length=max_output_tokens, min_length=min_output_tokens, truncation=True)
|
42 |
return output[0]['summary_text']
|
43 |
|
44 |
+
# Function to save the output summary to a file
|
45 |
+
def save_summary(summary_text):
|
46 |
"""Save the summarized text to a file."""
|
47 |
with open("summary_output.txt", "w") as file:
|
48 |
file.write(summary_text)
|
49 |
return "Summary saved to 'summary_output.txt'."
|
50 |
|
51 |
+
# Gradio interface setup
|
52 |
gr.close_all()
|
53 |
|
54 |
# Create the Gradio interface
|
|
|
60 |
],
|
61 |
outputs=[
|
62 |
gr.Textbox(label="SUMMARIZED TEXT", lines=10, placeholder="Your summarized text will appear here."),
|
63 |
+
gr.Button("Save Summary", click=save_summary)
|
64 |
],
|
65 |
title="PAVISHINI @ GenAI Project 1: Text Summarizer",
|
66 |
description=(
|
|
|
72 |
|
73 |
demo.launch()
|
74 |
|
|