Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,13 +66,10 @@ def process_pdf_and_ask_question(pdf_file,question):
|
|
66 |
res = chain({"question": question})
|
67 |
return res["answer"]
|
68 |
|
69 |
-
|
70 |
-
app=gr.interface(fn=process_pdf_and_ask_question,
|
71 |
inputs=[gr.File(file_count="single", type="filepath"), gr.Textbox(lines=2, placeholder="Ask a question...")],
|
72 |
outputs="text",
|
73 |
title="PDF Q&A",
|
74 |
description="Upload a PDF and ask questions about it.",
|
75 |
|
76 |
-
)
|
77 |
-
|
78 |
-
app.launch()
|
|
|
66 |
res = chain({"question": question})
|
67 |
return res["answer"]
|
68 |
|
69 |
+
gr.interface(fn=grad,
|
|
|
70 |
inputs=[gr.File(file_count="single", type="filepath"), gr.Textbox(lines=2, placeholder="Ask a question...")],
|
71 |
outputs="text",
|
72 |
title="PDF Q&A",
|
73 |
description="Upload a PDF and ask questions about it.",
|
74 |
|
75 |
+
).launch()
|
|
|
|