Spaces:
Runtime error
Runtime error
increase number of possible sentences found
Browse files- web_gui/streamlit.py +2 -2
web_gui/streamlit.py
CHANGED
|
@@ -308,8 +308,8 @@ def initialize_session_state():
|
|
| 308 |
'embeddings_model': SentenceTransformer(EMBEDDING_MODEL_NAME),
|
| 309 |
'min_window_size': 5,
|
| 310 |
'max_window_size': 10,
|
| 311 |
-
'similarity_threshold': 0.
|
| 312 |
-
'nof_keep_sentences':
|
| 313 |
'chat_history': [{"role": "system", "content": SYSTEM_PROMPT}],
|
| 314 |
'hyde_history': [],
|
| 315 |
'rag_docs': None,
|
|
|
|
| 308 |
'embeddings_model': SentenceTransformer(EMBEDDING_MODEL_NAME),
|
| 309 |
'min_window_size': 5,
|
| 310 |
'max_window_size': 10,
|
| 311 |
+
'similarity_threshold': 0.25,
|
| 312 |
+
'nof_keep_sentences': 20,
|
| 313 |
'chat_history': [{"role": "system", "content": SYSTEM_PROMPT}],
|
| 314 |
'hyde_history': [],
|
| 315 |
'rag_docs': None,
|