fix:default setting prompt with history messages (#1117)

Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
This commit is contained in:
Aries-ckt
2024-01-24 23:03:08 +08:00
committed by GitHub
parent 9a2b0e355e
commit be6718849f
2 changed files with 21 additions and 3 deletions

View File

@@ -133,8 +133,9 @@ class MilvusStore(VectorStoreBase):
connections.connect(
host=self.uri or "127.0.0.1",
port=self.port or "19530",
alias="default"
# secure=self.secure,
username=self.username,
password=self.password,
alias="default",
)
def init_schema_and_load(self, vector_name, documents) -> List[str]: