Spaces:
Sleeping
Sleeping
sahilnishad
commited on
Create constants.py
Browse files- constants.py +7 -0
constants.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from chromadb.config import Settings
|
2 |
+
|
3 |
+
CHROMA_SETTINGS = Settings(
|
4 |
+
chroma_db_impl="duckdb+parquet",
|
5 |
+
persist_directory="db",
|
6 |
+
anonymized_telemetry=False
|
7 |
+
)
|