Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -88,12 +88,13 @@ def process_pdf_and_query(pdf_file, user_query):
|
|
88 |
|
89 |
return output_text[0], num_images
|
90 |
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
-
|
93 |
-
query_input = gr.Textbox(label="Enter your query", placeholder="Ask a question about the PDF")
|
94 |
-
output_text = gr.Textbox(label="Model Answer")
|
95 |
-
output_images = gr.Textbox(label="Number of Images in PDF")
|
96 |
-
|
97 |
footer = """
|
98 |
<div style="text-align: center; margin-top: 20px;">
|
99 |
<a href="https://www.linkedin.com/in/pejman-ebrahimi-4a60151a7/" target="_blank">LinkedIn</a> |
|
@@ -107,6 +108,7 @@ footer = """
|
|
107 |
</div>
|
108 |
"""
|
109 |
|
|
|
110 |
explanation = """
|
111 |
<div style="text-align: center; margin-bottom: 20px;">
|
112 |
<h2 style="font-weight: bold; font-size: 24px;">Multimodal RAG (Retrieval-Augmented Generation)</h2>
|
@@ -119,18 +121,46 @@ explanation = """
|
|
119 |
</div>
|
120 |
"""
|
121 |
|
|
|
122 |
demo = gr.Interface(
|
123 |
fn=process_pdf_and_query,
|
124 |
-
inputs=[pdf_input, query_input],
|
125 |
-
outputs=[output_text, output_images],
|
126 |
title="Multimodal RAG with Image Query - By <a href='https://github.com/arad1367'>Pejman Ebrahimi</a>",
|
127 |
theme='freddyaboulton/dracula_revamped',
|
128 |
)
|
129 |
|
|
|
130 |
with demo:
|
131 |
-
gr.HTML(explanation)
|
132 |
-
gr.HTML(footer)
|
133 |
-
gr.DuplicateButton(value="Duplicate Space for private use", elem_classes="duplicate-button"
|
134 |
-
gr.Button("Submit", elem_classes="submit-button"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
-
|
|
|
|
88 |
|
89 |
return output_text[0], num_images
|
90 |
|
91 |
+
# Define the Gradio Interface
|
92 |
+
pdf_input = gr.File(label="Upload PDF") # Single PDF file input
|
93 |
+
query_input = gr.Textbox(label="Enter your query", placeholder="Ask a question about the PDF") # User query input
|
94 |
+
output_text = gr.Textbox(label="Model Answer") # Output for the model's answer
|
95 |
+
output_images = gr.Textbox(label="Number of Images in PDF") # Output for number of images
|
96 |
|
97 |
+
# Footer HTML
|
|
|
|
|
|
|
|
|
98 |
footer = """
|
99 |
<div style="text-align: center; margin-top: 20px;">
|
100 |
<a href="https://www.linkedin.com/in/pejman-ebrahimi-4a60151a7/" target="_blank">LinkedIn</a> |
|
|
|
108 |
</div>
|
109 |
"""
|
110 |
|
111 |
+
# Explanation about Multimodal RAG
|
112 |
explanation = """
|
113 |
<div style="text-align: center; margin-bottom: 20px;">
|
114 |
<h2 style="font-weight: bold; font-size: 24px;">Multimodal RAG (Retrieval-Augmented Generation)</h2>
|
|
|
121 |
</div>
|
122 |
"""
|
123 |
|
124 |
+
# Launch the Gradio app with additional features
|
125 |
demo = gr.Interface(
|
126 |
fn=process_pdf_and_query,
|
127 |
+
inputs=[pdf_input, query_input], # List of inputs
|
128 |
+
outputs=[output_text, output_images], # List of outputs
|
129 |
title="Multimodal RAG with Image Query - By <a href='https://github.com/arad1367'>Pejman Ebrahimi</a>",
|
130 |
theme='freddyaboulton/dracula_revamped',
|
131 |
)
|
132 |
|
133 |
+
# Add additional elements to the interface
|
134 |
with demo:
|
135 |
+
gr.HTML(explanation) # Explanation section
|
136 |
+
gr.HTML(footer) # Footer section
|
137 |
+
gr.DuplicateButton(value="Duplicate Space for private use", elem_classes="duplicate-button") # Duplicate button
|
138 |
+
submit_button = gr.Button("Submit", elem_classes="submit-button") # Custom Submit Button
|
139 |
+
|
140 |
+
# Custom CSS for styling the button
|
141 |
+
css = """
|
142 |
+
<style>
|
143 |
+
.submit-button {
|
144 |
+
background-color: green;
|
145 |
+
color: white;
|
146 |
+
border: none;
|
147 |
+
border-radius: 5px;
|
148 |
+
padding: 10px 20px;
|
149 |
+
font-size: 16px;
|
150 |
+
cursor: pointer;
|
151 |
+
}
|
152 |
+
.duplicate-button {
|
153 |
+
background-color: lightgreen;
|
154 |
+
color: white;
|
155 |
+
border: none;
|
156 |
+
border-radius: 5px;
|
157 |
+
padding: 10px 20px;
|
158 |
+
font-size: 16px;
|
159 |
+
cursor: pointer;
|
160 |
+
}
|
161 |
+
</style>
|
162 |
+
"""
|
163 |
+
gr.HTML(css)
|
164 |
|
165 |
+
# Launch the Gradio app
|
166 |
+
demo.launch(debug=True) # Start the interface
|