MOHAMMED-N commited on
Commit
4b0a455
·
verified ·
1 Parent(s): c4d290b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
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