TalatMasood commited on
Commit
201570a
·
1 Parent(s): 3508d64

Updating path for chroma_db

Browse files
Files changed (1) hide show
  1. config/config.py +3 -1
config/config.py CHANGED
@@ -65,7 +65,9 @@ class Settings:
65
  }
66
 
67
  # Vector Store Configuration
68
- CHROMA_PATH = os.getenv('CHROMA_PATH', './chroma_db')
 
 
69
 
70
  # Feedback Configuration
71
  MAX_RATING = int(os.getenv('MAX_RATING', '5'))
 
65
  }
66
 
67
  # Vector Store Configuration
68
+ # CHROMA_PATH = os.getenv('CHROMA_PATH', './chroma_db')
69
+ CHROMA_PATH = os.getenv('CHROMA_PATH', os.path.join(
70
+ os.path.dirname(__file__), 'data', 'chroma_db'))
71
 
72
  # Feedback Configuration
73
  MAX_RATING = int(os.getenv('MAX_RATING', '5'))