| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[ray.serve.llm][docs] Added llm serving docs (#50675) Signed-off-by: Gene Su <e870252314@gmail.com> Signed-off-by: Kourosh Hakhamaneshi <kourosh@anyscale.com> Signed-off-by: khluu <51931015+khluu@users.noreply.github.com> Co-authored-by: Gene Su <e870252314@gmail.com> Co-authored-by: khluu <51931015+khluu@users.noreply.github.com> | 1 年前 | |
[Doc] Add support for community examples (#43895) * [Doc] Add support for community examples Signed-off-by: pdmurray <peynmurray@gmail.com> | 2 年前 | |
Move documentation to ReadTheDocs. (#326) | 9 年前 | |
| 2 年前 | ||
[Doc] Fix 404 "Edit on GitHub" links for autogenerated pages (#46718) ## Why are these changes needed? This PR removes the Edit on GitHub links on the right hand sidebar for pages that are generated by the build system and therefore do not exist on github. Also, I grouped the imports in conf.py and custom_directives.py using isort - it was getting hard to keep track of what related imports there were. If this is undesired I can move this into a different PR. ## Related issue number Closes #41438. ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [x] I've run scripts/format.sh to lint the changes in this PR. - [x] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [x] Unit tests - [ ] Release tests - [ ] This PR is not tested :( Signed-off-by: pdmurray <peynmurray@gmail.com> | 2 年前 | |
[Doc] Revamp example gallery (#42862) updates the docs build system to change the way the example gallery is created. - Examples are now specified in yaml format, regularizing the metadata for each example in each ray library - Each ray library has an example page that is constructed from its corresponding yaml data - The example gallery itself is built using all ray library example yaml input data, meaning that individual ray library example pages no longer get out of sync with what is in the example gallery - As a result of changing the way that ray libraries store their examples, I had to change many of the the references to the ray library examples pages. The content of the example pages has not been changed. These changes are responsible for the majority of the files touched here. - A second impact of the changes here is that because some of the example pages were being included in toctrees before and now they are not, is that they need to be marked as orphaned. This has been done where necessary, but in particular in the .ipynb files this is actually done in the metadata of the file. - Capitalize "Example Gallery" in the top navigation bar --------- Signed-off-by: pdmurray <peynmurray@gmail.com> Co-authored-by: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> | 2 年前 | |
Update google tag container id (#54444) <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> We don't have access to the previous tag manager and can't edit event collection. This new one works <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. --> ## Why are these changes needed? <!-- Please give a short summary of the change and the problem this solves. --> ## Related issue number <!-- For example: "Closes #1234" --> ## Checks - [ ] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [ ] I've run scripts/format.sh to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( Signed-off-by: Vignesh Hirudayakanth <vigneshkanth@gmail.com> | 1 年前 | |
Cursor - Update ray docs Twitter link to X (#54238) Generated via Cursor Background Agents --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com> | 1 年前 | |
[Doc] Fix heading issue which broke AI assistant (#42563) Signed-off-by: pdmurray <peynmurray@gmail.com> | 2 年前 | |
[doc] fix readthedocs build (#46929) The main sidebar without caching version exceeds timed out limit on readthedocs, but the caching version makes it more complicated for local build. Use the cache version of the sidebar for now to unblock. I'm requesting bigger machines from readthedocs in the mean time, to unify the build going forward. Test: - CI Signed-off-by: can <can@anyscale.com> | 2 年前 | |
[doc][build] various changes to connect local doc build together (#46870) - Include dependency changes from https://github.com/ray-project/ray/pull/46867 - Since the bucket allows public use, it doesn't work with my AWS credential anymore but adding UNSIGNED (which means it's somewhat anonymous call? equivalent to --no-sign-request when using AWS CLI) works - Change the command to get latest commit to git merge-base HEAD origin/master since it seems to be more accurate. - Add local option to Makefile which does incremental build without -a -E flags - Change main-sidebar to use generate_toctree instead of cached_toctree --------- Signed-off-by: khluu <51931015+khluu@users.noreply.github.com> | 2 年前 | |
[Doc] Upgrade docs build system (#41115) This PR upgrades the build system for the docs. Signed-off-by: pdmurray <peynmurray@gmail.com> | 2 年前 | |
[Doc] Upgrade docs build system (#41115) This PR upgrades the build system for the docs. Signed-off-by: pdmurray <peynmurray@gmail.com> | 2 年前 | |
Remove references to Binder notebooks in Ray Tune tutorials (#50621) ## Why are these changes needed? * deletes the binder/ folder * deletes all references to launching Binder notebooks * unhides some important cells while hiding the output of others * clarifies the pip requirements for Tune tutorials * adds .conda to .gitignore ## Related issue number N/A ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [ ] I've run scripts/format.sh to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Ricardo Decal <rdecal@anyscale.com> | 1 年前 | |
Remove references to Binder notebooks in Ray Tune tutorials (#50621) ## Why are these changes needed? * deletes the binder/ folder * deletes all references to launching Binder notebooks * unhides some important cells while hiding the output of others * clarifies the pip requirements for Tune tutorials * adds .conda to .gitignore ## Related issue number N/A ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [ ] I've run scripts/format.sh to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Ricardo Decal <rdecal@anyscale.com> | 1 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 年前 | ||
| 2 年前 | ||
| 9 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 1 年前 |