集合管理
(ctx context.Context, config CollectionConfig)
| 9 | type VectorStore interface { |
| 10 | // 集合管理 |
| 11 | CreateCollection(ctx context.Context, config CollectionConfig) error |
| 12 | DeleteCollection(ctx context.Context, name string) error |
| 13 | GetCollectionInfo(ctx context.Context, name string) (*CollectionInfo, error) |
| 14 | ListCollections(ctx context.Context) ([]string, error) |
no outgoing calls