Spaces:
Sleeping
Sleeping
images aligned
Browse files
app.py
CHANGED
@@ -242,8 +242,9 @@ with gr.Blocks() as demo:
|
|
242 |
query = gr.Textbox(label="Search Query")
|
243 |
search_btn = gr.Button("Search")
|
244 |
examples = gr.Examples([["Which one is closest star?"], ["In which particles does the Higgs Boson decay to?"]], query)
|
245 |
-
gr.
|
246 |
-
|
|
|
247 |
with gr.Column():
|
248 |
results = gr.Markdown("Answer will appear here...", label="Search Results", )
|
249 |
search_btn.click(fn=search, inputs=query, outputs=results, api_name="search", show_progress=True)
|
|
|
242 |
query = gr.Textbox(label="Search Query")
|
243 |
search_btn = gr.Button("Search")
|
244 |
examples = gr.Examples([["Which one is closest star?"], ["In which particles does the Higgs Boson decay to?"]], query)
|
245 |
+
with gr.Row():
|
246 |
+
gr.HTML("<img src='https://sinai.ujaen.es/sites/default/files/SINAI%20-%20logo%20tx%20azul%20%5Baf%5D.png' width='200'></img>")
|
247 |
+
gr.HTML("<img src='https://diariodigital.ujaen.es/sites/default/files/general/logo-uja.svg' width='150'></img>")
|
248 |
with gr.Column():
|
249 |
results = gr.Markdown("Answer will appear here...", label="Search Results", )
|
250 |
search_btn.click(fn=search, inputs=query, outputs=results, api_name="search", show_progress=True)
|