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