TheBobBob commited on
Commit
f07e3d1
·
verified ·
1 Parent(s): e09d134

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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)