🔧 chore(vectorstores.py): set persist_directory field value to False

The persist_directory field in the VectorStoreFrontendNode class is now set to False. This change was made to disable the persistence of the directory.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-30 18:10:36 -03:00
commit 1a9f69ef60

View file

@ -285,3 +285,6 @@ class VectorStoreFrontendNode(FrontendNode):
elif field.name == "text_key":
field.show = False
if field.name == "persist_directory":
field.value = False