🐛 fix(vectorstores.py): change default value of "Persist" extra field to False

The default value of the "Persist" extra field in the VectorStoreFrontendNode class has been changed from True to False. This change was made to align the default value with the desired behavior of the application.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-01 09:43:30 -03:00
commit 016c9983d6

View file

@ -51,7 +51,7 @@ class VectorStoreFrontendNode(FrontendNode):
required=False,
show=True,
advanced=False,
value=True,
value=False,
display_name="Persist",
)
extra_fields.append(extra_field)