Add data snapshot path and reorder dataset repository constant in app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,9 @@ load_dotenv()
|
|
26 |
|
27 |
# Constants for paths and URLs
|
28 |
VECTOR_STORE_PATH = "vector_store"
|
29 |
-
HF_DATASET_REPO = "Rulga/LS_chat"
|
30 |
LOCAL_CHAT_HISTORY_PATH = "chat_history"
|
|
|
|
|
31 |
|
32 |
URLS = [
|
33 |
"https://status.law",
|
|
|
26 |
|
27 |
# Constants for paths and URLs
|
28 |
VECTOR_STORE_PATH = "vector_store"
|
|
|
29 |
LOCAL_CHAT_HISTORY_PATH = "chat_history"
|
30 |
+
DATA_SNAPSHOT_PATH = "data_snapshot"
|
31 |
+
HF_DATASET_REPO = "Rulga/LS_chat"
|
32 |
|
33 |
URLS = [
|
34 |
"https://status.law",
|