mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 10:45:42 +01:00
Opts-out of anonymized telemetry being tracked in Chroma. See: https://docs.trychroma.com/telemetry
11 lines
No EOL
284 B
Python
11 lines
No EOL
284 B
Python
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
|
|
) |