Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[serve] Clean up API reference and various docstrings #34711

Merged
merged 33 commits into from
May 5, 2023
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b1e151e
WIP
edoakes Apr 20, 2023
d82bf89
fix
edoakes Apr 20, 2023
c214fd9
working
edoakes Apr 20, 2023
a37508d
fix getattr
edoakes Apr 20, 2023
1d9d676
fix msg
edoakes Apr 20, 2023
23be0d2
wut
edoakes Apr 20, 2023
2700450
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 21, 2023
82412b6
fix import
edoakes Apr 21, 2023
cd15020
fix tests
edoakes Apr 21, 2023
ff292f8
rm imp
edoakes Apr 21, 2023
0ed6efd
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 21, 2023
5244b3a
fixes
edoakes Apr 24, 2023
318c4a9
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 24, 2023
569f420
WIP
edoakes Apr 24, 2023
2a4319e
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 24, 2023
8e692cc
revert schema
edoakes Apr 24, 2023
f74501e
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 25, 2023
bd3c017
consolidate
edoakes Apr 25, 2023
98c608c
WIP
edoakes Apr 25, 2023
4de70fa
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes Apr 25, 2023
2f05639
working
edoakes Apr 25, 2023
d880005
fix
edoakes Apr 25, 2023
0e07313
fix
edoakes Apr 25, 2023
83a576f
revert
edoakes Apr 25, 2023
fcff1a5
cleanup deployment docstring
edoakes Apr 26, 2023
88600d8
cleanups
edoakes Apr 26, 2023
dddf6bc
fix
edoakes Apr 26, 2023
91b1cb4
fix
edoakes Apr 26, 2023
8f2dfee
Merge branch 'master' of https://github.com/ray-project/ray into app-…
edoakes May 2, 2023
5abe893
fix
edoakes May 2, 2023
dc2113d
Update python/ray/serve/deployment.py
edoakes May 2, 2023
b05dd13
Update python/ray/serve/api.py
edoakes May 5, 2023
38eaa2f
angelina comments
edoakes May 5, 2023
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}()
:members:
5 changes: 5 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,3 +433,8 @@ def setup(app):
]

redoc_uri = "https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"

autosummary_filename_map = {
"ray.serve.deployment": "ray.serve.deployment_decorator",
"ray.serve.Deployment": "ray.serve.Deployment",
}
Loading