Spaces:
Running
Running
File size: 334 Bytes
6082154 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# src/vectorstores/chroma_settings.py
"""
Shared settings for ChromaDB to ensure consistency across the application
"""
import chromadb
def get_chroma_settings():
"""Get consistent ChromaDB settings"""
return chromadb.Settings(
allow_reset=True,
is_persistent=True,
anonymized_telemetry=False
)
|