Spaces:
Sleeping
Sleeping
Update rag/memory.py
Browse files- rag/memory.py +1 -1
rag/memory.py
CHANGED
|
@@ -6,7 +6,7 @@ import logging
|
|
| 6 |
# Configure logging for this module
|
| 7 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| 8 |
|
| 9 |
-
CACHE_DIR = "
|
| 10 |
# Create the cache directory if it doesn't exist
|
| 11 |
if not os.path.exists(CACHE_DIR):
|
| 12 |
os.makedirs(CACHE_DIR)
|
|
|
|
| 6 |
# Configure logging for this module
|
| 7 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| 8 |
|
| 9 |
+
CACHE_DIR = "/tmp/.cache"
|
| 10 |
# Create the cache directory if it doesn't exist
|
| 11 |
if not os.path.exists(CACHE_DIR):
|
| 12 |
os.makedirs(CACHE_DIR)
|