Al1Abdullah commited on
Commit
492f039
·
verified ·
1 Parent(s): a61f5b3

Update rag/memory.py

Browse files
Files changed (1) hide show
  1. 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 = ".cache"
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)