From f1c00750aaffec970758f4d90c93429fd88b9037 Mon Sep 17 00:00:00 2001 From: "Junxi (Eric) Li" <68884486+ericljx2020-gmail@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:10:39 -0800 Subject: [PATCH] fix: correct issue with Milvus field name, renamed connection password to Token (#4453) rename connectino password to Token --- src/backend/base/langflow/components/vectorstores/milvus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/base/langflow/components/vectorstores/milvus.py b/src/backend/base/langflow/components/vectorstores/milvus.py index ff83d961d..994604f2f 100644 --- a/src/backend/base/langflow/components/vectorstores/milvus.py +++ b/src/backend/base/langflow/components/vectorstores/milvus.py @@ -34,9 +34,9 @@ class MilvusVectorStoreComponent(LCVectorStoreComponent): ), SecretStrInput( name="password", - display_name="Connection Password", + display_name="Token", value="", - info="Ignore this field if no password is required to make connection.", + info="Ignore this field if no token is required to make connection.", ), DictInput(name="connection_args", display_name="Other Connection Arguments", advanced=True), StrInput(name="primary_field", display_name="Primary Field Name", value="pk"),