Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -76,7 +76,7 @@ title = """
|
|
| 76 |
<p style="text-align: center;">'Load a File', click the "Upload file to Moli" button, <br />
|
| 77 |
wait for the Status to show Ready. Type your question, click on "Ask Moli" <br />
|
| 78 |
The app is built on GPT-4</p>
|
| 79 |
-
<img src="file=Vaultedge-logo-with-name.png"
|
| 80 |
</div>
|
| 81 |
"""
|
| 82 |
|
|
@@ -100,7 +100,7 @@ with gr.Blocks(css=css,theme=gr.themes.Monochrome()) as demo:
|
|
| 100 |
submit_query = gr.Button("Ask Moli").style(full_width=False)
|
| 101 |
|
| 102 |
with gr.Row():
|
| 103 |
-
gr.Image(value="Vaultedge-logo-with-name.png", shape=(
|
| 104 |
|
| 105 |
|
| 106 |
load_pdf.click(load_pdf_and_generate_embeddings, inputs=[pdf_doc, openai_key, relevant_pages], outputs=status)
|
|
|
|
| 76 |
<p style="text-align: center;">'Load a File', click the "Upload file to Moli" button, <br />
|
| 77 |
wait for the Status to show Ready. Type your question, click on "Ask Moli" <br />
|
| 78 |
The app is built on GPT-4</p>
|
| 79 |
+
<img src="file=Vaultedge-logo-with-name.png" style="width: 30%; min-width: 60px; display: block; margin: auto; background-color: transparent;">
|
| 80 |
</div>
|
| 81 |
"""
|
| 82 |
|
|
|
|
| 100 |
submit_query = gr.Button("Ask Moli").style(full_width=False)
|
| 101 |
|
| 102 |
with gr.Row():
|
| 103 |
+
gr.Image(value="Vaultedge-logo-with-name.png", shape=(50,50))
|
| 104 |
|
| 105 |
|
| 106 |
load_pdf.click(load_pdf_and_generate_embeddings, inputs=[pdf_doc, openai_key, relevant_pages], outputs=status)
|