Create is expected to create a VectorIndex, or generate an error if the name already has a corresponding VectorIndex or other problems. The name will be associated with with the generated VectorIndex such that if we Create an index with the name "foo", then later attempt to find the index with name
(name string, o opts.Options, floatBits int)
| 40 | // The set of vectors to use in the index process is defined by |
| 41 | // source. |
| 42 | Create(name string, o opts.Options, floatBits int) (VectorIndex[T], error) |
| 43 | |
| 44 | // Find is expected to retrieve the VectorIndex corresponding with the |
| 45 | // name. If it attempts to find a name that does not exist, the VectorIndex |
no outgoing calls