Mishmosh commited on
Commit
f88e951
·
1 Parent(s): f5184a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -9
app.py CHANGED
@@ -1,14 +1,19 @@
1
  import gradio as gr
2
 
3
- def upload_file(files):
4
- # Assuming the user will upload only one PDF file, extract its name
5
- pdf_file_path = [file.name for file in files if file.name.endswith(".pdf")]
6
- return pdf_file_path
 
 
 
7
 
8
- with gr.Blocks() as demo:
9
- file_output = gr.File()
10
- upload_button = gr.UploadButton("Please upload a PDF that contains an abstract. I will provide a one-sentence summary of the abstract and will say the summary out loud.", file_types=[".pdf"], file_count=1)
11
- upload_button.upload(upload_file, upload_button, file_output)
12
 
13
- demo.launch()
 
 
 
 
14
 
 
 
1
  import gradio as gr
2
 
3
+ def process_input(message, pdf_file):
4
+ print("Received Message:", message)
5
+ print("Received PDF File:", pdf_file.name)
6
+
7
+ # Save the received PDF file
8
+ with open("received_pdf.pdf", "wb") as output_file:
9
+ output_file.write(pdf_file.read())
10
 
11
+ return "Processing complete. Check the console for details."
 
 
 
12
 
13
+ iface = gr.Interface(
14
+ fn=process_input,
15
+ inputs=["text", gr.File(type="pdf", label="Upload PDF")],
16
+ outputs="text"
17
+ )
18
 
19
+ iface.launch()