Update app.py
Browse files
app.py
CHANGED
@@ -139,6 +139,7 @@ def create_vector_db(final_items):
|
|
139 |
global db
|
140 |
client = chromadb.Client()
|
141 |
collection_name = "BioModelsRAG"
|
|
|
142 |
embedding_function = embedding_functions.SentenceTransformerEmbeddingFunction(model_name="all-MiniLM-L6-v2")
|
143 |
|
144 |
db = client.get_or_create_collection(name=collection_name, embedding_function = embedding_function)
|
|
|
139 |
global db
|
140 |
client = chromadb.Client()
|
141 |
collection_name = "BioModelsRAG"
|
142 |
+
from chromadb.utils import embedding_functions
|
143 |
embedding_function = embedding_functions.SentenceTransformerEmbeddingFunction(model_name="all-MiniLM-L6-v2")
|
144 |
|
145 |
db = client.get_or_create_collection(name=collection_name, embedding_function = embedding_function)
|