Closed as not planned
Description
In my scenarios, schemas are always built programmatically based on configuration or user input. This means collections cannot be strongly typed to a specific class.
Currently, I use:
→ var collection = vectorStore.GetCollection<ulong, object>("name", definition);
Setting TRecord to object seems to work but feels hacky. A class extension to abstract/hide this would improve usability, something like this:
→ var collection = vectorStore.GetCollection("name", definition);
Metadata
Metadata
Type
Projects
Status
Backlog