fix: correct issue with Milvus field name, renamed connection password to Token (#4453)

rename connectino password to Token
This commit is contained in:
Junxi (Eric) Li 2024-11-19 12:10:39 -08:00 committed by GitHub
commit f1c00750aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"),