(ctx context.Context, docs []Document)
| 35 | // 核心运行时只依赖该接口,不关心具体实现(pgvector/Qdrant/内存等)。 |
| 36 | type VectorStore interface { |
| 37 | Upsert(ctx context.Context, docs []Document) error |
| 38 | Delete(ctx context.Context, ids []string) error |
| 39 | Query(ctx context.Context, q Query) ([]Hit, error) |
| 40 | Close() error |
no outgoing calls
no test coverage detected