/ src / vector_stores / constants.py
constants.py
1  """Constants specific to vector store functionality."""
2  
3  DEFAULT_COLLECTION_NAME = "rag_collection"
4  
5  DEFAULT_VECTOR_DB_DIR = "./vector_db"
6  
7  CHUNK_ID_PREFIX = "chunk_"
8