Spaces:
Build error
Build error
Update rag_langchain.py
Browse files- rag_langchain.py +1 -1
rag_langchain.py
CHANGED
@@ -89,7 +89,7 @@ class LangChainRAG(BaseRAG):
|
|
89 |
|
90 |
def get_vector_store_chroma(self):
|
91 |
return Chroma(
|
92 |
-
embedding_function = OpenAIEmbeddings(disallowed_special = ()),
|
93 |
persist_directory = self.CHROMA_DIR
|
94 |
)
|
95 |
|
|
|
89 |
|
90 |
def get_vector_store_chroma(self):
|
91 |
return Chroma(
|
92 |
+
embedding_function = OpenAIEmbeddings(disallowed_special = ()), # embed
|
93 |
persist_directory = self.CHROMA_DIR
|
94 |
)
|
95 |
|