docx / constants.py
RishuD7's picture
bug fix
962b3c2
raw
history blame
325 Bytes
import os
from dotenv import load_dotenv
from chromadb.config import Settings
# Define the folder for storing database
PERSIST_DIRECTORY = "db"
# Define the Chroma settings
CHROMA_SETTINGS = Settings(
chroma_db_impl='duckdb+parquet',
persist_directory=PERSIST_DIRECTORY,
anonymized_telemetry=False
)