document / constants.py
Nikhil0987's picture
Update constants.py
410f5e0 verified
raw
history blame
245 Bytes
import os
import chromadb
from pydantic_settings import BaseSettings
from chromadb.config import Settings
CHROMA_SETTINGS = Settings(
chroma_db_impl='duckdb+parquet',
persist_directory='db',
anonymized_telemetry=False
)