iGmainC
iGmainC
@jeremyphilemon 1. Usually this error happens after the first message, but sometimes it doesn't happen, which is weird. 2. The error is seen after the tool call has finished executing...
> This looks good to me, let's have @iGmainC verify first though OK, I will test it as soon as possible.
> @iGmainC , did you get a chance to test on your side? The CI tests are passing now. I briefly tested my scene and it seemed to be ok.
> It does support. Did you config RBAC before? milvus or Zilliz Cloud? > > yarn test test/grpc/Database.spec.ts [0] > yarn run v1.22.22 > $ NODE_ENV=dev jest test/grpc/Database.spec.ts > console.dir...
docker-compose file: ```yaml services: etcd: container_name: milvus-etcd image: quay.io/coreos/etcd:v3.5.18 environment: - ETCD_AUTO_COMPACTION_MODE=revision - ETCD_AUTO_COMPACTION_RETENTION=1000 - ETCD_QUOTA_BACKEND_BYTES=4294967296 - ETCD_SNAPSHOT_COUNT=50000 volumes: - ./data/db/etcd:/etcd command: etcd -advertise-client-urls=http://etcd:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd healthcheck: test:...
code: ```ts let client: MilvusClient = this.getClient(); await sleep(5000); console.log(client.connectStatus); let { db_names } = await client.listDatabases(); ``` output: ``` 2 Error: listDatabases is not supported on this version of...
Why is the content of `node_modules/@zilliz/milvus2-sdk-node/dist/sdk.json` in @zilliz/milvus2-sdk-node v2.6.0: ```json {"version":"2.6.0","milvusVersion":"v2.6.0-rc1"} ```
> const client = new MilvusClient({ > ...yourconfig > }); > > // usually you don't need this , but you can test to see if it works. > await...
> > > const client = new MilvusClient({ > > > ...yourconfig > > > }); > > > // usually you don't need this , but you can test...
@wingkwong The Select component has a similar problem.