Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -36,7 +36,7 @@ def find_similar_documents(query, documents):
|
|
| 36 |
|
| 37 |
return "\n\n".join(results)
|
| 38 |
|
| 39 |
-
with gr.Blocks(title="Document Similarity Search") as demo:
|
| 40 |
gr.Markdown("# Document Similarity Search")
|
| 41 |
gr.Markdown("Find the most relevant documents for your query using Google's Embedding Gemma model.")
|
| 42 |
|
|
|
|
| 36 |
|
| 37 |
return "\n\n".join(results)
|
| 38 |
|
| 39 |
+
with gr.Blocks(title="Document Similarity Search", theme=gr.themes.Default(primary_hue="blue", secondary_hue="indigo", neutral_hue="zinc", font=[gr.themes.GoogleFont("Roboto"), "Arial", "sans-serif"])) as demo:
|
| 40 |
gr.Markdown("# Document Similarity Search")
|
| 41 |
gr.Markdown("Find the most relevant documents for your query using Google's Embedding Gemma model.")
|
| 42 |
|