Solshine commited on
Commit
28c69cd
·
verified ·
1 Parent(s): 296274b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -3,11 +3,10 @@ from huggingface_hub import InferenceClient
3
  import chromadb
4
  from chromadb.config import Settings
5
 
6
- # Initialize ChromaDB client
7
- client_db = chromadb.Client(Settings(
8
- chroma_db_impl="duckdb+parquet",
9
- persist_directory="chromadb_directory"
10
- ))
11
 
12
  # Load your collection
13
  collection = client_db.get_collection("my_collection")
 
3
  import chromadb
4
  from chromadb.config import Settings
5
 
6
+ from chromadb import PersistentClient
7
+
8
+ client_db = PersistentClient(path="chromadb_directory")
9
+
 
10
 
11
  # Load your collection
12
  collection = client_db.get_collection("my_collection")