Skip to content

Commit e695457

Browse files
authored
Adding experimental tags to class docs so it shows up in online Python Reference. Add to docs rst (#1880)
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent 75f67ec commit e695457

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

sdk/python/docs/source/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ Feature View
3939
.. automodule:: feast.feature_view
4040
:members:
4141

42+
On Demand Feature View
43+
==================
44+
45+
.. automodule:: feast.on_demand_feature_view
46+
:members:
47+
4248
Feature
4349
==================
4450

sdk/python/feast/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def on_demand_feature_views_cmd():
249249
@click.pass_context
250250
def on_demand_feature_view_describe(ctx: click.Context, name: str):
251251
"""
252-
Describe an on demand feature view
252+
[Experimental] Describe an on demand feature view
253253
"""
254254
repo = ctx.obj["CHDIR"]
255255
cli_check_repo(repo)
@@ -274,7 +274,7 @@ def on_demand_feature_view_describe(ctx: click.Context, name: str):
274274
@click.pass_context
275275
def on_demand_feature_view_list(ctx: click.Context):
276276
"""
277-
List all on demand feature views
277+
[Experimental] List all on demand feature views
278278
"""
279279
repo = ctx.obj["CHDIR"]
280280
cli_check_repo(repo)

sdk/python/feast/on_demand_feature_view.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131

3232
class OnDemandFeatureView:
3333
"""
34-
An OnDemandFeatureView defines on demand transformations on existing feature view values and request data.
34+
[Experimental] An OnDemandFeatureView defines on demand transformations on existing feature view values and request
35+
data.
3536
3637
Args:
3738
name: Name of the group of features.

0 commit comments

Comments
 (0)