Load the vectors from a path.
(cls, path: Path)
| 67 | |
| 68 | @classmethod |
| 69 | def load(cls, path: Path) -> BasicVectorStore: |
| 70 | """Load the vectors from a path.""" |
| 71 | vectors = cls._load_vectors(path) |
| 72 | return cls(vectors=vectors) |
| 73 | |
| 74 | @property |
| 75 | def dim(self) -> int: |
nothing calls this directly
no test coverage detected