It was a bit tricky to set up a Milvus collection for the first time. As it's possible to upload a collection JSON through the Milvus UI it makes sense to provide that collection with the module.
Issue fork ai_vdb_provider_milvus-3565173
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
nnevillComment #4
nnevillComment #5
scott_euser commentedHmmmm I think programmatically we are attempting to create the collection here https://git.drupalcode.org/project/ai_vdb_provider_milvus/-/blob/2.0.x/s... on resave of the provider. It seems like we probably need to trigger that code elsewhere too?
E.g. on server status page, flag collection not ready, and have a link like 'Automatically create collection now' which then triggers that same code. I suppose roughly similar to how solr deals with it, letting you solve via Drupal UI when collection is missing.
I think steps to reproduce are essentially something like:
Let me know what you think of the above