pavishnikarthikeyan commited on
Commit
b166c3b
·
verified ·
1 Parent(s): 421eaab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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
- # Gradio interface
45
- def save_output(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
  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("Download Summary")
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