Update app.py
Browse files
app.py
CHANGED
@@ -193,10 +193,10 @@ with gr.Blocks(theme=gr.themes.Monochrome()) as demo:
|
|
193 |
# Displaying Examples
|
194 |
with gr.Row():
|
195 |
gr.Markdown("## π‘ Example Queries")
|
196 |
-
gr.Examples(examples=get_example(), inputs=[file, query], label="Try These Examples"
|
197 |
|
198 |
# Output Gallery for Search Results
|
199 |
-
output_gallery = gr.Gallery(label="π Retrieved Documents", height=600
|
200 |
|
201 |
# Section 3: Answer Retrieval
|
202 |
with gr.Row():
|
|
|
193 |
# Displaying Examples
|
194 |
with gr.Row():
|
195 |
gr.Markdown("## π‘ Example Queries")
|
196 |
+
gr.Examples(examples=get_example(), inputs=[file, query], label="Try These Examples")
|
197 |
|
198 |
# Output Gallery for Search Results
|
199 |
+
output_gallery = gr.Gallery(label="π Retrieved Documents", height=600)
|
200 |
|
201 |
# Section 3: Answer Retrieval
|
202 |
with gr.Row():
|