kidwaiaun commited on
Commit
6b7d3a2
·
verified ·
1 Parent(s): fc49792

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ embedding_model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
26
  embedding_dim = 384
27
  chat_index = faiss.IndexFlatL2(embedding_dim)
28
  doc_index = faiss.IndexFlatL2(embedding_dim)
29
- doc_text = []
30
 
31
  # Session-based Memory (Resets Each Session)
32
  chat_sessions = {}
 
26
  embedding_dim = 384
27
  chat_index = faiss.IndexFlatL2(embedding_dim)
28
  doc_index = faiss.IndexFlatL2(embedding_dim)
29
+ doc_texts = []
30
 
31
  # Session-based Memory (Resets Each Session)
32
  chat_sessions = {}