Preetham04 commited on
Commit
1fbe44c
·
verified ·
1 Parent(s): 726ddfd

Create 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
+ )