We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0646d07 + f09ed02 commit 623e1deCopy full SHA for 623e1de
1 file changed
code/python/retrieval_providers/milvus_client.py
@@ -92,7 +92,7 @@ def _get_milvus_client(self, embedding_size: str = "small") -> MilvusClient:
92
logger.debug(f"Creating Milvus client for {client_key}")
93
94
# Initialize the client
95
- self._milvus_clients[client_key] = MilvusClient(self.uri, self.token)
+ self._milvus_clients[client_key] = MilvusClient(uri=self.uri, token=self.token)
96
logger.info(f"Created Milvus client for {client_key} at {self.uri}")
97
98
# Test client connection with a simple search
0 commit comments