Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,18 @@ def main():
|
|
15 |
local_file = "Policies001.pdf"
|
16 |
index_folder = "faiss_index"
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
# Step 1: Load Embeddings
|
19 |
embeddings = load_embeddings()
|
20 |
|
|
|
15 |
local_file = "Policies001.pdf"
|
16 |
index_folder = "faiss_index"
|
17 |
|
18 |
+
st.markdown(
|
19 |
+
"""
|
20 |
+
<style>
|
21 |
+
.rtl {
|
22 |
+
direction: rtl;
|
23 |
+
text-align: right;
|
24 |
+
}
|
25 |
+
</style>
|
26 |
+
""",
|
27 |
+
unsafe_allow_html=True
|
28 |
+
)
|
29 |
+
|
30 |
# Step 1: Load Embeddings
|
31 |
embeddings = load_embeddings()
|
32 |
|