Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,11 +3,10 @@ from huggingface_hub import InferenceClient
|
|
3 |
import chromadb
|
4 |
from chromadb.config import Settings
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
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")
|