(self)
| 111 | |
| 112 | @property |
| 113 | def feature_store(self): |
| 114 | # Initialize FeatureStore lazily |
| 115 | if self._feature_store is None: |
| 116 | self._feature_store = FeatureStore(repo_path=self.feast_repo_path) |
| 117 | return self._feature_store |
| 118 | |
| 119 | @property |
| 120 | def vector_store(self): |
nothing calls this directly
no test coverage detected