Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions sdk/python/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Feature View
.. automodule:: feast.feature_view
:members:

On Demand Feature View
==================

.. automodule:: feast.on_demand_feature_view
:members:

Feature
==================

Expand Down
4 changes: 2 additions & 2 deletions sdk/python/feast/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def on_demand_feature_views_cmd():
@click.pass_context
def on_demand_feature_view_describe(ctx: click.Context, name: str):
"""
Describe an on demand feature view
[Experimental] Describe an on demand feature view
"""
repo = ctx.obj["CHDIR"]
cli_check_repo(repo)
Expand All @@ -274,7 +274,7 @@ def on_demand_feature_view_describe(ctx: click.Context, name: str):
@click.pass_context
def on_demand_feature_view_list(ctx: click.Context):
"""
List all on demand feature views
[Experimental] List all on demand feature views
"""
repo = ctx.obj["CHDIR"]
cli_check_repo(repo)
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/feast/on_demand_feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@

class OnDemandFeatureView:
"""
An OnDemandFeatureView defines on demand transformations on existing feature view values and request data.
[Experimental] An OnDemandFeatureView defines on demand transformations on existing feature view values and request
data.

Args:
name: Name of the group of features.
Expand Down