legal-chat / constants.py
themanas021's picture
Create constants.py
63dfee4
raw
history blame contribute delete
No virus
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
)