Retrieves the list of feature views from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. tags: Filter by tags. Returns: A list of feature views.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 551 | ) |
| 552 | |
| 553 | def list_batch_feature_views( |
| 554 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
| 555 | ) -> List[FeatureView]: |
| 556 | """ |
| 557 | Retrieves the list of feature views from the registry. |
| 558 | |
| 559 | Args: |
| 560 | allow_cache: Whether to allow returning entities from a cached registry. |
| 561 | tags: Filter by tags. |
| 562 | |
| 563 | Returns: |
| 564 | A list of feature views. |
| 565 | """ |
| 566 | return self._list_batch_feature_views(allow_cache=allow_cache, tags=tags) |
| 567 | |
| 568 | def _list_batch_feature_views( |
| 569 | self, |