(self)
| 44 | |
| 45 | @property |
| 46 | def store(self): |
| 47 | if self._store is None: |
| 48 | self._store = FeatureStore(repo_path=self._store_repo_path) |
| 49 | self._store.apply([self.rag_view]) |
| 50 | # TODO: Add validation to ensure store type is one of supported types e.g. pgvector, elasticsearch, milvus |
| 51 | return self._store |
| 52 | |
| 53 | def query( |
| 54 | self, |
nothing calls this directly
no test coverage detected