Retrieves the list of feature views from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. Returns: A list of feature views.
(
self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
)
| 520 | return feature_views |
| 521 | |
| 522 | def list_all_feature_views( |
| 523 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |
| 524 | ) -> List[BaseFeatureView]: |
| 525 | """ |
| 526 | Retrieves the list of feature views from the registry. |
| 527 | |
| 528 | Args: |
| 529 | allow_cache: Whether to allow returning entities from a cached registry. |
| 530 | |
| 531 | Returns: |
| 532 | A list of feature views. |
| 533 | """ |
| 534 | return self._list_all_feature_views(allow_cache, tags=tags) |
| 535 | |
| 536 | def list_feature_views( |
| 537 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |