🐛 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:
parent
e04eb0fd7e
commit
016c9983d6
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue