is the user db_admin by default and the pwd is the api key? I've been trying with GPT-4 to get it to work in 500 different ways basically for the whole day and I think I tried everything, more frustrating because telnet / direct requests work but I couldn't manage to make it work with LlamaIndex π I kept getting error while connecting (although I wasn't using user and pwd) and GPT came up with this (which I guess is incorrect)
"However, in the Python code, you're using the MilvusVectorStore which uses a gRPC client to connect to the server rather than making a HTTP request. gRPC and HTTP are different protocols and can behave differently, and the gRPC client expects the server to be accessible at a specific port (which seems to be 19530 by default in your original code).
In the updated code, you're using port 443, which is the default port for HTTPS. That's why you can connect to it via telnet or curl (which uses HTTP/S) but not from the Python code using gRPC.
However, Milvus does support both HTTP and gRPC. If the gRPC client is not working as expected, you can try using the HTTP client instead.
Unfortunately, as of my knowledge cutoff in September 2021, the llama_index library only supports gRPC for connecting to Milvus, not HTTP. "