Spaces:
Sleeping
Sleeping
File size: 203 Bytes
95fdd56 |
1 2 3 4 5 6 7 8 9 |
import os
import chromadb
from chromadb.config import Settings
CHROMA_SETTINGS = Settings(
chroma_db_impl='duckdb+parquet',
persist_directory='db',
anonymized_telemetry=False
)
|