fix queue compute node

This commit is contained in:
tsukasa
2023-09-27 17:24:00 +08:00
parent a5e5839460
commit 01f05285c7
5 changed files with 24 additions and 19 deletions
+1 -1
View File
@@ -62,5 +62,5 @@ class KnowledgeStore:
def get_vector_store(self, model_name: str) -> VectorBase:
if model_name not in self.vector_store:
self.vector_store[model_name] = ChromaVectorStore(model_name)
self.vector_store[model_name] = ChromaVectorStore(self.root, model_name)
return self.vector_store[model_name]