Nikhil0987 commited on
Commit
6ebf8cf
·
verified ·
1 Parent(s): b9ff8f4

Upload constants.py

Browse files
Files changed (1) hide show
  1. 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
+ )