davanstrien HF staff commited on
Commit
557fe3e
1 Parent(s): 373a965

is_persistent=True

Browse files
Files changed (1) hide show
  1. utils.py +2 -1
utils.py CHANGED
@@ -38,7 +38,8 @@ def get_chroma_client():
38
  SAVE_PATH = get_save_path()
39
 
40
  return chromadb.PersistentClient(
41
- path=SAVE_PATH, settings=Settings(anonymized_telemetry=False)
 
42
  )
43
 
44
 
 
38
  SAVE_PATH = get_save_path()
39
 
40
  return chromadb.PersistentClient(
41
+ path=SAVE_PATH,
42
+ settings=Settings(anonymized_telemetry=False, is_persistent=True),
43
  )
44
 
45