rag_practice / constants.py
Preetham04's picture
Create constants.py
1fbe44c verified
raw
history blame
202 Bytes
import os
import chromadb
from chromadb.config import Settings
CHROMA_SETTINGS = Settings(
chroma_db_impl='duckdb+parquet',
persist_directory='db',
anonymized_telemetry=False
)