Read the Docs build information Build id: 4136834 Project: anyscale-ray Version: 64277 Commit: 3f206e0254ecf36fa4b56f0db99ec1f8200959e8 Date: 2026-06-23T14:02:09.559621Z State: finished Success: True [rtd-command-info] start-time: 2026-06-23T14:02:10.264226Z, end-time: 2026-06-23T14:02:22.959631Z, duration: 12, exit-code: 0 git clone --depth 1 https://github.com/ray-project/ray.git . Cloning into '.'... Updating files: 40% (4049/10027) Updating files: 41% (4112/10027) Updating files: 42% (4212/10027) Updating files: 43% (4312/10027) Updating files: 44% (4412/10027) Updating files: 45% (4513/10027) Updating files: 46% (4613/10027) Updating files: 47% (4713/10027) Updating files: 48% (4813/10027) Updating files: 49% (4914/10027) Updating files: 50% (5014/10027) Updating files: 51% (5114/10027) Updating files: 52% (5215/10027) Updating files: 53% (5315/10027) Updating files: 54% (5415/10027) Updating files: 55% (5515/10027) Updating files: 56% (5616/10027) Updating files: 57% (5716/10027) Updating files: 58% (5816/10027) Updating files: 59% (5916/10027) Updating files: 60% (6017/10027) Updating files: 61% (6117/10027) Updating files: 62% (6217/10027) Updating files: 63% (6318/10027) Updating files: 64% (6418/10027) Updating files: 65% (6518/10027) Updating files: 66% (6618/10027) Updating files: 67% (6719/10027) Updating files: 68% (6819/10027) Updating files: 69% (6919/10027) Updating files: 70% (7019/10027) Updating files: 71% (7120/10027) Updating files: 72% (7220/10027) Updating files: 73% (7320/10027) Updating files: 74% (7420/10027) Updating files: 75% (7521/10027) Updating files: 76% (7621/10027) Updating files: 77% (7721/10027) Updating files: 78% (7822/10027) Updating files: 79% (7922/10027) Updating files: 80% (8022/10027) Updating files: 81% (8122/10027) Updating files: 82% (8223/10027) Updating files: 83% (8323/10027) Updating files: 84% (8423/10027) Updating files: 85% (8523/10027) Updating files: 86% (8624/10027) Updating files: 87% (8724/10027) Updating files: 88% (8824/10027) Updating files: 89% (8925/10027) Updating files: 90% (9025/10027) Updating files: 91% (9125/10027) Updating files: 92% (9225/10027) Updating files: 93% (9326/10027) Updating files: 94% (9426/10027) Updating files: 95% (9526/10027) Updating files: 96% (9626/10027) Updating files: 97% (9727/10027) Updating files: 98% (9827/10027) Updating files: 99% (9927/10027) Updating files: 100% (10027/10027) Updating files: 100% (10027/10027), done. [rtd-command-info] start-time: 2026-06-23T14:02:23.044822Z, end-time: 2026-06-23T14:02:24.981144Z, duration: 1, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 pull/64277/head:external-64277 From https://github.com/ray-project/ray * [new ref] refs/pull/64277/head -> external-64277 [rtd-command-info] start-time: 2026-06-23T14:02:25.787220Z, end-time: 2026-06-23T14:02:26.944868Z, duration: 1, exit-code: 0 git checkout --force 3f206e0254ecf36fa4b56f0db99ec1f8200959e8 Note: switching to '3f206e0254ecf36fa4b56f0db99ec1f8200959e8'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 3f206e0 [doc] rtd: build into _build/html then publish, not straight to HTMLDIR [rtd-command-info] start-time: 2026-06-23T14:02:27.025524Z, end-time: 2026-06-23T14:02:27.064531Z, duration: 0, exit-code: 0 cat .readthedocs.yaml # .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-24.04 tools: python: "3.10" jobs: # On PR builds, skip the Sphinx build when the PR doesn't touch any # files that affect documentation output. Reduces queue pressure on # the shared RTD build slots when several PRs are open at once. # Tag/branch builds (master, stable, etc.) always run. # See https://docs.readthedocs.com/platform/stable/guides/build/skip-build.html # # Some constructs are avoided deliberately because RTD's job runner # silently drops scripts that contain them: use echo (not printf # with a backslash-escape format string), avoid backslash escapes # in general, and keep shell comments out of this block so that # backticks/$() inside comments don't confuse the preprocessor. post_checkout: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml # Override the html build step. On PR (external) builds, restore the latest # master build cache and build incrementally so only PR-changed files are # rebuilt; fall back to a full build if no cache is available. On branch/tag # builds (master, stable, release tags) always do a full clean build so the # published output is never stale. Targets live in doc/Makefile (rtd, html). build: html: - | if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then echo "PR build; attempting incremental build from the master doc cache." make -C doc rtd HTMLDIR="$READTHEDOCS_OUTPUT/html" || make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" else echo "Branch/tag build; running a full clean build." make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" fi # Build documentation in the docs/ directory with Sphinx sphinx: configuration: doc/source/conf.py fail_on_warning: true # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: doc/requirements-doc.lock.txt [rtd-command-info] start-time: 2026-06-23T14:02:27.154903Z, end-time: 2026-06-23T14:02:31.410772Z, duration: 4, exit-code: 0 if [ "${READTHEDOCS_VERSION_TYPE:-}" != "external" ]; then echo "Not a PR build (version type: '${READTHEDOCS_VERSION_TYPE:-unset}'); building docs." exit 0 fi git fetch --depth=500 origin master 2>/dev/null || true if ! git merge-base origin/master HEAD >/dev/null 2>&1; then echo "Could not determine merge-base with origin/master; building docs to be safe." exit 0 fi if git diff --quiet origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml; then echo "No doc-affecting files changed in this PR; skipping Sphinx build." echo "Files changed in PR:" git diff --name-only origin/master...HEAD exit 183 fi echo "Doc-affecting files changed; building docs. Changed doc-relevant paths:" git diff --name-only origin/master...HEAD -- doc/ python/ray/ rllib/ .readthedocs.yaml Doc-affecting files changed; building docs. Changed doc-relevant paths: .readthedocs.yaml doc/Makefile [rtd-command-info] start-time: 2026-06-23T14:02:35.931719Z, end-time: 2026-06-23T14:02:35.991543Z, duration: 0, exit-code: 0 asdf global python 3.10.19 [rtd-command-info] start-time: 2026-06-23T14:02:36.382352Z, end-time: 2026-06-23T14:02:36.939617Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.10.19.final.0-64 in 279ms creator CPython3Posix(dest=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/docs/.local/share/virtualenv) added seed packages: pip==23.1, setuptools==67.6.1, wheel==0.40.0 activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator [rtd-command-info] start-time: 2026-06-23T14:02:37.024867Z, end-time: 2026-06-23T14:02:39.944700Z, duration: 2, exit-code: 0 python -m pip install --upgrade --no-cache-dir pip setuptools Requirement already satisfied: pip in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (23.1) Collecting pip Downloading pip-26.1.2-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 47.2 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (67.6.1) Collecting setuptools Downloading setuptools-82.0.1-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 407.8 MB/s eta 0:00:00 Installing collected packages: setuptools, pip Attempting uninstall: setuptools Found existing installation: setuptools 67.6.1 Uninstalling setuptools-67.6.1: Successfully uninstalled setuptools-67.6.1 Attempting uninstall: pip Found existing installation: pip 23.1 Uninstalling pip-23.1: Successfully uninstalled pip-23.1 Successfully installed pip-26.1.2 setuptools-82.0.1 [rtd-command-info] start-time: 2026-06-23T14:02:40.026005Z, end-time: 2026-06-23T14:02:43.981642Z, duration: 3, exit-code: 0 python -m pip install --upgrade --no-cache-dir sphinx Collecting sphinx Downloading sphinx-8.1.3-py3-none-any.whl.metadata (6.4 kB) Collecting sphinxcontrib-applehelp>=1.0.7 (from sphinx) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-devhelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-htmlhelp>=2.0.6 (from sphinx) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-jsmath>=1.0.1 (from sphinx) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl.metadata (1.4 kB) Collecting sphinxcontrib-qthelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-serializinghtml>=1.1.9 (from sphinx) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl.metadata (2.4 kB) Collecting Jinja2>=3.1 (from sphinx) Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) Collecting Pygments>=2.17 (from sphinx) Downloading pygments-2.20.0-py3-none-any.whl.metadata (2.5 kB) Collecting docutils<0.22,>=0.20 (from sphinx) Downloading docutils-0.21.2-py3-none-any.whl.metadata (2.8 kB) Collecting snowballstemmer>=2.2 (from sphinx) Downloading snowballstemmer-3.1.1-py3-none-any.whl.metadata (7.9 kB) Collecting babel>=2.13 (from sphinx) Downloading babel-2.18.0-py3-none-any.whl.metadata (2.2 kB) Collecting alabaster>=0.7.14 (from sphinx) Downloading alabaster-1.0.0-py3-none-any.whl.metadata (2.8 kB) Collecting imagesize>=1.3 (from sphinx) Downloading imagesize-2.0.0-py2.py3-none-any.whl.metadata (1.5 kB) Collecting requests>=2.30.0 (from sphinx) Downloading requests-2.34.2-py3-none-any.whl.metadata (4.8 kB) Collecting packaging>=23.0 (from sphinx) Downloading packaging-26.2-py3-none-any.whl.metadata (3.5 kB) Collecting tomli>=2 (from sphinx) Downloading tomli-2.4.1-py3-none-any.whl.metadata (10 kB) Collecting MarkupSafe>=2.0 (from Jinja2>=3.1->sphinx) Downloading markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB) Collecting charset_normalizer<4,>=2 (from requests>=2.30.0->sphinx) Downloading charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (40 kB) Collecting idna<4,>=2.5 (from requests>=2.30.0->sphinx) Downloading idna-3.18-py3-none-any.whl.metadata (6.1 kB) Collecting urllib3<3,>=1.26 (from requests>=2.30.0->sphinx) Downloading urllib3-2.7.0-py3-none-any.whl.metadata (6.9 kB) Collecting certifi>=2023.5.7 (from requests>=2.30.0->sphinx) Downloading certifi-2026.6.17-py3-none-any.whl.metadata (2.5 kB) Downloading sphinx-8.1.3-py3-none-any.whl (3.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/3.5 MB 124.9 MB/s 0:00:00 Downloading docutils-0.21.2-py3-none-any.whl (587 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 587.4/587.4 kB 868.2 MB/s 0:00:00 Downloading alabaster-1.0.0-py3-none-any.whl (13 kB) Downloading babel-2.18.0-py3-none-any.whl (10.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 387.6 MB/s 0:00:00 Downloading imagesize-2.0.0-py2.py3-none-any.whl (9.4 kB) Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) Downloading markupsafe-3.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (20 kB) Downloading packaging-26.2-py3-none-any.whl (100 kB) Downloading pygments-2.20.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 1.0 GB/s 0:00:00 Downloading requests-2.34.2-py3-none-any.whl (73 kB) Downloading charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216 kB) Downloading idna-3.18-py3-none-any.whl (65 kB) Downloading urllib3-2.7.0-py3-none-any.whl (131 kB) Downloading certifi-2026.6.17-py3-none-any.whl (133 kB) Downloading snowballstemmer-3.1.1-py3-none-any.whl (104 kB) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl (119 kB) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl (82 kB) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl (98 kB) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl (5.1 kB) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl (88 kB) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl (92 kB) Downloading tomli-2.4.1-py3-none-any.whl (14 kB) Installing collected packages: urllib3, tomli, sphinxcontrib-serializinghtml, sphinxcontrib-qthelp, sphinxcontrib-jsmath, sphinxcontrib-htmlhelp, sphinxcontrib-devhelp, sphinxcontrib-applehelp, snowballstemmer, Pygments, packaging, MarkupSafe, imagesize, idna, docutils, charset_normalizer, certifi, babel, alabaster, requests, Jinja2, sphinx Successfully installed Jinja2-3.1.6 MarkupSafe-3.0.3 Pygments-2.20.0 alabaster-1.0.0 babel-2.18.0 certifi-2026.6.17 charset_normalizer-3.4.7 docutils-0.21.2 idna-3.18 imagesize-2.0.0 packaging-26.2 requests-2.34.2 snowballstemmer-3.1.1 sphinx-8.1.3 sphinxcontrib-applehelp-2.0.0 sphinxcontrib-devhelp-2.0.0 sphinxcontrib-htmlhelp-2.1.0 sphinxcontrib-jsmath-1.0.1 sphinxcontrib-qthelp-2.0.0 sphinxcontrib-serializinghtml-2.0.0 tomli-2.4.1 urllib3-2.7.0 [rtd-command-info] start-time: 2026-06-23T14:02:44.058458Z, end-time: 2026-06-23T14:03:33.804243Z, duration: 49, exit-code: 0 python -m pip install --exists-action=w --no-cache-dir -r doc/requirements-doc.lock.txt Collecting absl-py==2.4.0 (from -r doc/requirements-doc.lock.txt (line 3)) Downloading absl_py-2.4.0-py3-none-any.whl (135 kB) Collecting accessible-pygments==0.0.5 (from -r doc/requirements-doc.lock.txt (line 10)) Downloading accessible_pygments-0.0.5-py3-none-any.whl (1.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 17.3 MB/s 0:00:00 Collecting alabaster==0.7.16 (from -r doc/requirements-doc.lock.txt (line 14)) Downloading alabaster-0.7.16-py3-none-any.whl (13 kB) Collecting annotated-types==0.7.0 (from -r doc/requirements-doc.lock.txt (line 18)) Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB) Collecting anyio==4.11.0 (from -r doc/requirements-doc.lock.txt (line 22)) Downloading anyio-4.11.0-py3-none-any.whl (109 kB) Collecting appnope==0.1.4 (from -r doc/requirements-doc.lock.txt (line 28)) Downloading appnope-0.1.4-py2.py3-none-any.whl (4.3 kB) Collecting asttokens==3.0.0 (from -r doc/requirements-doc.lock.txt (line 32)) Downloading asttokens-3.0.0-py3-none-any.whl (26 kB) Collecting astunparse==1.6.3 (from -r doc/requirements-doc.lock.txt (line 36)) Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) Collecting attrs==25.4.0 (from -r doc/requirements-doc.lock.txt (line 40)) Downloading attrs-25.4.0-py3-none-any.whl (67 kB) Collecting autodoc-pydantic==2.2.0 (from -r doc/requirements-doc.lock.txt (line 47)) Downloading autodoc_pydantic-2.2.0-py3-none-any.whl (34 kB) Collecting babel==2.17.0 (from -r doc/requirements-doc.lock.txt (line 50)) Downloading babel-2.17.0-py3-none-any.whl (10.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 50.6 MB/s 0:00:00 Collecting beautifulsoup4==4.14.2 (from -r doc/requirements-doc.lock.txt (line 56)) Downloading beautifulsoup4-4.14.2-py3-none-any.whl (106 kB) Collecting boto3==1.34.69 (from -r doc/requirements-doc.lock.txt (line 60)) Downloading boto3-1.34.69-py3-none-any.whl (139 kB) Collecting botocore==1.34.162 (from -r doc/requirements-doc.lock.txt (line 64)) Downloading botocore-1.34.162-py3-none-any.whl (12.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.5/12.5 MB 136.4 MB/s 0:00:00 Collecting certifi==2025.10.5 (from -r doc/requirements-doc.lock.txt (line 70)) Downloading certifi-2025.10.5-py3-none-any.whl (163 kB) Collecting charset-normalizer==3.4.4 (from -r doc/requirements-doc.lock.txt (line 74)) Downloading charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (153 kB) Collecting click==8.1.7 (from -r doc/requirements-doc.lock.txt (line 189)) Downloading click-8.1.7-py3-none-any.whl (97 kB) Collecting colorama==0.4.6 (from -r doc/requirements-doc.lock.txt (line 197)) Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) Collecting comm==0.2.3 (from -r doc/requirements-doc.lock.txt (line 201)) Downloading comm-0.2.3-py3-none-any.whl (7.3 kB) Collecting debugpy==1.8.17 (from -r doc/requirements-doc.lock.txt (line 205)) Downloading debugpy-1.8.17-cp310-cp310-manylinux_2_34_x86_64.whl (3.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 194.8 MB/s 0:00:00 Collecting decorator==5.2.1 (from -r doc/requirements-doc.lock.txt (line 237)) Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB) Collecting docutils==0.20.1 (from -r doc/requirements-doc.lock.txt (line 241)) Downloading docutils-0.20.1-py3-none-any.whl (572 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 572.7/572.7 kB 316.6 MB/s 0:00:00 Collecting exceptiongroup==1.3.0 (from -r doc/requirements-doc.lock.txt (line 250)) Downloading exceptiongroup-1.3.0-py3-none-any.whl (16 kB) Collecting executing==2.2.1 (from -r doc/requirements-doc.lock.txt (line 256)) Downloading executing-2.2.1-py2.py3-none-any.whl (28 kB) Collecting fastjsonschema==2.21.2 (from -r doc/requirements-doc.lock.txt (line 260)) Downloading fastjsonschema-2.21.2-py3-none-any.whl (24 kB) Collecting flatbuffers==25.12.19 (from -r doc/requirements-doc.lock.txt (line 264)) Downloading flatbuffers-25.12.19-py2.py3-none-any.whl (26 kB) Collecting gast==0.7.0 (from -r doc/requirements-doc.lock.txt (line 267)) Downloading gast-0.7.0-py3-none-any.whl (22 kB) Collecting gitdb==4.0.12 (from -r doc/requirements-doc.lock.txt (line 271)) Downloading gitdb-4.0.12-py3-none-any.whl (62 kB) Collecting gitpython==3.1.46 (from -r doc/requirements-doc.lock.txt (line 275)) Downloading gitpython-3.1.46-py3-none-any.whl (208 kB) Collecting google-pasta==0.2.0 (from -r doc/requirements-doc.lock.txt (line 279)) Downloading google_pasta-0.2.0-py3-none-any.whl (57 kB) Collecting greenlet==3.2.4 (from -r doc/requirements-doc.lock.txt (line 284)) Downloading greenlet-3.2.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (584 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 584.4/584.4 kB 502.9 MB/s 0:00:00 Collecting grpcio==1.78.0 (from -r doc/requirements-doc.lock.txt (line 340)) Downloading grpcio-1.78.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.7/6.7 MB 39.5 MB/s 0:00:00 Collecting h11==0.16.0 (from -r doc/requirements-doc.lock.txt (line 405)) Downloading h11-0.16.0-py3-none-any.whl (37 kB) Collecting h5py==3.15.1 (from -r doc/requirements-doc.lock.txt (line 409)) Downloading h5py-3.15.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 58.9 MB/s 0:00:00 Collecting idna==3.11 (from -r doc/requirements-doc.lock.txt (line 453)) Downloading idna-3.11-py3-none-any.whl (71 kB) Collecting imagesize==1.4.1 (from -r doc/requirements-doc.lock.txt (line 459)) Downloading imagesize-1.4.1-py2.py3-none-any.whl (8.8 kB) Collecting importlib-metadata==8.7.0 (from -r doc/requirements-doc.lock.txt (line 463)) Downloading importlib_metadata-8.7.0-py3-none-any.whl (27 kB) Collecting ipykernel==7.0.1 (from -r doc/requirements-doc.lock.txt (line 469)) Downloading ipykernel-7.0.1-py3-none-any.whl (118 kB) Collecting ipython==8.37.0 (from -r doc/requirements-doc.lock.txt (line 473)) Downloading ipython-8.37.0-py3-none-any.whl (831 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 831.9/831.9 kB 561.4 MB/s 0:00:00 Collecting jedi==0.19.2 (from -r doc/requirements-doc.lock.txt (line 479)) Downloading jedi-0.19.2-py2.py3-none-any.whl (1.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 375.5 MB/s 0:00:00 Requirement already satisfied: jinja2==3.1.6 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 483)) (3.1.6) Collecting jmespath==1.0.1 (from -r doc/requirements-doc.lock.txt (line 491)) Downloading jmespath-1.0.1-py3-none-any.whl (20 kB) Collecting jsonpointer==3.0.0 (from -r doc/requirements-doc.lock.txt (line 497)) Downloading jsonpointer-3.0.0-py2.py3-none-any.whl (7.6 kB) Collecting jsonschema==4.25.1 (from -r doc/requirements-doc.lock.txt (line 501)) Downloading jsonschema-4.25.1-py3-none-any.whl (90 kB) Collecting jsonschema-specifications==2025.9.1 (from -r doc/requirements-doc.lock.txt (line 507)) Downloading jsonschema_specifications-2025.9.1-py3-none-any.whl (18 kB) Collecting jupyter-cache==0.6.1 (from -r doc/requirements-doc.lock.txt (line 511)) Downloading jupyter_cache-0.6.1-py3-none-any.whl (33 kB) Collecting jupyter-client==8.6.3 (from -r doc/requirements-doc.lock.txt (line 515)) Downloading jupyter_client-8.6.3-py3-none-any.whl (106 kB) Collecting jupyter-core==5.9.1 (from -r doc/requirements-doc.lock.txt (line 521)) Downloading jupyter_core-5.9.1-py3-none-any.whl (29 kB) Collecting jupytext==1.15.2 (from -r doc/requirements-doc.lock.txt (line 529)) Downloading jupytext-1.15.2-py3-none-any.whl (307 kB) Collecting keras==3.12.1 (from -r doc/requirements-doc.lock.txt (line 533)) Downloading keras-3.12.1-py3-none-any.whl (1.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 358.8 MB/s 0:00:00 Collecting libclang==18.1.1 (from -r doc/requirements-doc.lock.txt (line 537)) Downloading libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl (24.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 24.5/24.5 MB 211.6 MB/s 0:00:00 Collecting markdown==3.10.2 (from -r doc/requirements-doc.lock.txt (line 549)) Downloading markdown-3.10.2-py3-none-any.whl (108 kB) Collecting markdown-it-py==3.0.0 (from -r doc/requirements-doc.lock.txt (line 553)) Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) Requirement already satisfied: markupsafe==3.0.3 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 561)) (3.0.3) Collecting matplotlib-inline==0.1.7 (from -r doc/requirements-doc.lock.txt (line 654)) Downloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB) Collecting mdit-py-plugins==0.5.0 (from -r doc/requirements-doc.lock.txt (line 660)) Downloading mdit_py_plugins-0.5.0-py3-none-any.whl (57 kB) Collecting mdurl==0.1.2 (from -r doc/requirements-doc.lock.txt (line 666)) Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) Collecting ml-dtypes==0.5.4 (from -r doc/requirements-doc.lock.txt (line 670)) Downloading ml_dtypes-0.5.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.0/5.0 MB 304.8 MB/s 0:00:00 Collecting myst-nb==1.4.0 (from -r doc/requirements-doc.lock.txt (line 713)) Downloading myst_nb-1.4.0-py3-none-any.whl (82 kB) Collecting myst-parser==2.0.0 (from -r doc/requirements-doc.lock.txt (line 717)) Downloading myst_parser-2.0.0-py3-none-any.whl (77 kB) Collecting namex==0.1.0 (from -r doc/requirements-doc.lock.txt (line 723)) Downloading namex-0.1.0-py3-none-any.whl (5.9 kB) Collecting nbclient==0.7.4 (from -r doc/requirements-doc.lock.txt (line 727)) Downloading nbclient-0.7.4-py3-none-any.whl (73 kB) Collecting nbformat==5.10.4 (from -r doc/requirements-doc.lock.txt (line 733)) Downloading nbformat-5.10.4-py3-none-any.whl (78 kB) Collecting nest-asyncio==1.6.0 (from -r doc/requirements-doc.lock.txt (line 741)) Downloading nest_asyncio-1.6.0-py3-none-any.whl (5.2 kB) Collecting numpy==1.26.4 (from -r doc/requirements-doc.lock.txt (line 745)) Downloading numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.2/18.2 MB 432.3 MB/s 0:00:00 Collecting opt-einsum==3.4.0 (from -r doc/requirements-doc.lock.txt (line 788)) Downloading opt_einsum-3.4.0-py3-none-any.whl (71 kB) Collecting optree==0.18.0 (from -r doc/requirements-doc.lock.txt (line 792)) Downloading optree-0.18.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (386 kB) Collecting packaging==25.0 (from -r doc/requirements-doc.lock.txt (line 894)) Downloading packaging-25.0-py3-none-any.whl (66 kB) Collecting parso==0.8.5 (from -r doc/requirements-doc.lock.txt (line 905)) Downloading parso-0.8.5-py2.py3-none-any.whl (106 kB) Collecting pexpect==4.9.0 (from -r doc/requirements-doc.lock.txt (line 909)) Downloading pexpect-4.9.0-py2.py3-none-any.whl (63 kB) Collecting pillow==12.1.1 (from -r doc/requirements-doc.lock.txt (line 913)) Downloading pillow-12.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (7.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.0/7.0 MB 132.9 MB/s 0:00:00 Collecting platformdirs==4.5.0 (from -r doc/requirements-doc.lock.txt (line 1006)) Downloading platformdirs-4.5.0-py3-none-any.whl (18 kB) Collecting prompt-toolkit==3.0.52 (from -r doc/requirements-doc.lock.txt (line 1010)) Downloading prompt_toolkit-3.0.52-py3-none-any.whl (391 kB) Collecting protobuf==6.33.5 (from -r doc/requirements-doc.lock.txt (line 1014)) Downloading protobuf-6.33.5-cp39-abi3-manylinux2014_x86_64.whl (323 kB) Collecting psutil==7.1.0 (from -r doc/requirements-doc.lock.txt (line 1028)) Downloading psutil-7.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291 kB) Collecting ptyprocess==0.7.0 (from -r doc/requirements-doc.lock.txt (line 1039)) Downloading ptyprocess-0.7.0-py2.py3-none-any.whl (13 kB) Collecting pure-eval==0.2.3 (from -r doc/requirements-doc.lock.txt (line 1043)) Downloading pure_eval-0.2.3-py3-none-any.whl (11 kB) Collecting pyarrow==19.0.1 (from -r doc/requirements-doc.lock.txt (line 1047)) Downloading pyarrow-19.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (42.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.1/42.1 MB 46.6 MB/s 0:00:00 Collecting pydantic==2.12.4 (from -r doc/requirements-doc.lock.txt (line 1091)) Downloading pydantic-2.12.4-py3-none-any.whl (463 kB) Collecting pydantic-core==2.41.5 (from -r doc/requirements-doc.lock.txt (line 1098)) Downloading pydantic_core-2.41.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 409.8 MB/s 0:00:00 Collecting pydantic-settings==2.2.1 (from -r doc/requirements-doc.lock.txt (line 1221)) Downloading pydantic_settings-2.2.1-py3-none-any.whl (13 kB) Collecting pydata-sphinx-theme==0.17.1 (from -r doc/requirements-doc.lock.txt (line 1225)) Downloading pydata_sphinx_theme-0.17.1-py3-none-any.whl (6.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.8/6.8 MB 96.3 MB/s 0:00:00 Collecting pygments==2.16.1 (from -r doc/requirements-doc.lock.txt (line 1229)) Downloading Pygments-2.16.1-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 436.5 MB/s 0:00:00 Collecting python-dateutil==2.9.0.post0 (from -r doc/requirements-doc.lock.txt (line 1239)) Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) Collecting python-dotenv==1.1.1 (from -r doc/requirements-doc.lock.txt (line 1245)) Downloading python_dotenv-1.1.1-py3-none-any.whl (20 kB) Collecting pyyaml==6.0.3 (from -r doc/requirements-doc.lock.txt (line 1249)) Downloading pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (770 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 770.3/770.3 kB 1.0 GB/s 0:00:00 Collecting pyzmq==27.1.0 (from -r doc/requirements-doc.lock.txt (line 1330)) Downloading pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (854 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 854.1/854.1 kB 192.9 MB/s 0:00:00 Collecting referencing==0.37.0 (from -r doc/requirements-doc.lock.txt (line 1426)) Downloading referencing-0.37.0-py3-none-any.whl (26 kB) Collecting requests==2.32.5 (from -r doc/requirements-doc.lock.txt (line 1432)) Downloading requests-2.32.5-py3-none-any.whl (64 kB) Collecting rich==14.3.3 (from -r doc/requirements-doc.lock.txt (line 1440)) Downloading rich-14.3.3-py3-none-any.whl (310 kB) Collecting rpds-py==0.27.1 (from -r doc/requirements-doc.lock.txt (line 1444)) Downloading rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384 kB) Collecting s3transfer==0.10.4 (from -r doc/requirements-doc.lock.txt (line 1603)) Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) Collecting setuptools==80.9.0 (from -r doc/requirements-doc.lock.txt (line 1607)) Downloading setuptools-80.9.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 959.5 MB/s 0:00:00 Collecting six==1.17.0 (from -r doc/requirements-doc.lock.txt (line 1614)) Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) Collecting smmap==5.0.2 (from -r doc/requirements-doc.lock.txt (line 1623)) Downloading smmap-5.0.2-py3-none-any.whl (24 kB) Collecting sniffio==1.3.1 (from -r doc/requirements-doc.lock.txt (line 1627)) Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) Collecting snowballstemmer==3.0.1 (from -r doc/requirements-doc.lock.txt (line 1631)) Downloading snowballstemmer-3.0.1-py3-none-any.whl (103 kB) Collecting soupsieve==2.8 (from -r doc/requirements-doc.lock.txt (line 1635)) Downloading soupsieve-2.8-py3-none-any.whl (36 kB) Collecting sphinx==7.3.7 (from -r doc/requirements-doc.lock.txt (line 1639)) Downloading sphinx-7.3.7-py3-none-any.whl (3.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 341.8 MB/s 0:00:00 Collecting sphinx-autobuild==2024.4.16 (from -r doc/requirements-doc.lock.txt (line 1660)) Downloading sphinx_autobuild-2024.4.16-py3-none-any.whl (11 kB) Collecting sphinx-click==5.1.0 (from -r doc/requirements-doc.lock.txt (line 1664)) Downloading sphinx_click-5.1.0-py3-none-any.whl (9.7 kB) Collecting sphinx-collections==0.3.1 (from -r doc/requirements-doc.lock.txt (line 1668)) Downloading sphinx_collections-0.3.1-py3-none-any.whl (16 kB) Collecting sphinx-copybutton==0.5.2 (from -r doc/requirements-doc.lock.txt (line 1672)) Downloading sphinx_copybutton-0.5.2-py3-none-any.whl (13 kB) Collecting sphinx-design==0.5.0 (from -r doc/requirements-doc.lock.txt (line 1676)) Downloading sphinx_design-0.5.0-py3-none-any.whl (2.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 310.8 MB/s 0:00:00 Collecting sphinx-docsearch==0.0.7 (from -r doc/requirements-doc.lock.txt (line 1680)) Downloading sphinx_docsearch-0.0.7-py3-none-any.whl (42 kB) Collecting sphinx-jsonschema==1.19.1 (from -r doc/requirements-doc.lock.txt (line 1684)) Downloading sphinx-jsonschema-1.19.1.tar.gz (18 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Collecting sphinx-last-updated-by-git==0.3.8 (from -r doc/requirements-doc.lock.txt (line 1687)) Downloading sphinx_last_updated_by_git-0.3.8-py3-none-any.whl (8.6 kB) Collecting sphinx-llms-txt==0.7.1 (from -r doc/requirements-doc.lock.txt (line 1691)) Downloading sphinx_llms_txt-0.7.1-py3-none-any.whl (22 kB) Collecting sphinx-remove-toctrees==0.0.3 (from -r doc/requirements-doc.lock.txt (line 1695)) Downloading sphinx_remove_toctrees-0.0.3-py3-none-any.whl (4.7 kB) Collecting sphinx-sitemap==2.9.0 (from -r doc/requirements-doc.lock.txt (line 1699)) Downloading sphinx_sitemap-2.9.0-py3-none-any.whl (6.2 kB) Requirement already satisfied: sphinxcontrib-applehelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1703)) (2.0.0) Requirement already satisfied: sphinxcontrib-devhelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1707)) (2.0.0) Requirement already satisfied: sphinxcontrib-htmlhelp==2.1.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1711)) (2.1.0) Requirement already satisfied: sphinxcontrib-jsmath==1.0.1 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1715)) (1.0.1) Requirement already satisfied: sphinxcontrib-qthelp==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1719)) (2.0.0) Collecting sphinxcontrib-redoc==1.6.0 (from -r doc/requirements-doc.lock.txt (line 1723)) Downloading sphinxcontrib-redoc-1.6.0.tar.gz (350 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Requirement already satisfied: sphinxcontrib-serializinghtml==2.0.0 in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages (from -r doc/requirements-doc.lock.txt (line 1726)) (2.0.0) Collecting sphinxemoji==0.3.2 (from -r doc/requirements-doc.lock.txt (line 1730)) Downloading sphinxemoji-0.3.2-py3-none-any.whl (45 kB) Collecting sphinxext-opengraph==0.13.0 (from -r doc/requirements-doc.lock.txt (line 1734)) Downloading sphinxext_opengraph-0.13.0-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 642.0 MB/s 0:00:00 Collecting sqlalchemy==2.0.44 (from -r doc/requirements-doc.lock.txt (line 1738)) Downloading sqlalchemy-2.0.44-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 211.0 MB/s 0:00:00 Collecting stack-data==0.6.3 (from -r doc/requirements-doc.lock.txt (line 1797)) Downloading stack_data-0.6.3-py3-none-any.whl (24 kB) Collecting starlette==0.48.0 (from -r doc/requirements-doc.lock.txt (line 1801)) Downloading starlette-0.48.0-py3-none-any.whl (73 kB) Collecting tabulate==0.9.0 (from -r doc/requirements-doc.lock.txt (line 1805)) Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) Collecting tensorboard==2.20.0 (from -r doc/requirements-doc.lock.txt (line 1809)) Downloading tensorboard-2.20.0-py3-none-any.whl (5.5 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/5.5 MB 243.0 MB/s 0:00:00 Collecting tensorboard-data-server==0.7.2 (from -r doc/requirements-doc.lock.txt (line 1812)) Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/6.6 MB 177.8 MB/s 0:00:00 Collecting tensorflow==2.20.0 (from -r doc/requirements-doc.lock.txt (line 1817)) Downloading tensorflow-2.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 620.4/620.4 MB 76.3 MB/s 0:00:07 Collecting termcolor==3.3.0 (from -r doc/requirements-doc.lock.txt (line 1841)) Downloading termcolor-3.3.0-py3-none-any.whl (7.7 kB) Collecting tf-keras==2.20.1 (from -r doc/requirements-doc.lock.txt (line 1845)) Downloading tf_keras-2.20.1-py3-none-any.whl (1.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 349.0 MB/s 0:00:00 Collecting toml==0.10.2 (from -r doc/requirements-doc.lock.txt (line 1849)) Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting tomli==2.3.0 (from -r doc/requirements-doc.lock.txt (line 1853)) Downloading tomli-2.3.0-py3-none-any.whl (14 kB) Collecting tornado==6.5.2 (from -r doc/requirements-doc.lock.txt (line 1897)) Downloading tornado-6.5.2-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (443 kB) Collecting traitlets==5.14.3 (from -r doc/requirements-doc.lock.txt (line 1913)) Downloading traitlets-5.14.3-py3-none-any.whl (85 kB) Collecting typing-extensions==4.15.0 (from -r doc/requirements-doc.lock.txt (line 1924)) Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB) Collecting typing-inspection==0.4.2 (from -r doc/requirements-doc.lock.txt (line 1944)) Downloading typing_inspection-0.4.2-py3-none-any.whl (14 kB) Collecting urllib3==1.26.20 (from -r doc/requirements-doc.lock.txt (line 1948)) Downloading urllib3-1.26.20-py2.py3-none-any.whl (144 kB) Collecting uvicorn==0.37.0 (from -r doc/requirements-doc.lock.txt (line 1955)) Downloading uvicorn-0.37.0-py3-none-any.whl (67 kB) Collecting watchfiles==1.1.1 (from -r doc/requirements-doc.lock.txt (line 1959)) Downloading watchfiles-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455 kB) Collecting wcwidth==0.2.14 (from -r doc/requirements-doc.lock.txt (line 2070)) Downloading wcwidth-0.2.14-py2.py3-none-any.whl (37 kB) Collecting websockets==15.0.1 (from -r doc/requirements-doc.lock.txt (line 2074)) Downloading websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (181 kB) Collecting werkzeug==3.1.6 (from -r doc/requirements-doc.lock.txt (line 2145)) Downloading werkzeug-3.1.6-py3-none-any.whl (225 kB) Collecting wheel==0.46.3 (from -r doc/requirements-doc.lock.txt (line 2149)) Downloading wheel-0.46.3-py3-none-any.whl (30 kB) Collecting wrapt==2.1.1 (from -r doc/requirements-doc.lock.txt (line 2153)) Downloading wrapt-2.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (113 kB) Collecting xmltodict==0.13.0 (from -r doc/requirements-doc.lock.txt (line 2229)) Downloading xmltodict-0.13.0-py2.py3-none-any.whl (10.0 kB) Collecting zipp==3.23.0 (from -r doc/requirements-doc.lock.txt (line 2233)) Downloading zipp-3.23.0-py3-none-any.whl (10 kB) Building wheels for collected packages: sphinx-jsonschema, sphinxcontrib-redoc Building wheel for sphinx-jsonschema (pyproject.toml): started Building wheel for sphinx-jsonschema (pyproject.toml): finished with status 'done' Created wheel for sphinx-jsonschema: filename=sphinx_jsonschema-1.19.1-py3-none-any.whl size=15469 sha256=114ccff0e7f3653b5e43540323189102f7af9a400238c7463b99bdf0a43ce206 Stored in directory: /tmp/pip-ephem-wheel-cache-wd3_k61_/wheels/82/8b/0f/4cf4419b592e6ad5f1361067888fd0cade74714061a34d2858 Building wheel for sphinxcontrib-redoc (pyproject.toml): started Building wheel for sphinxcontrib-redoc (pyproject.toml): finished with status 'done' Created wheel for sphinxcontrib-redoc: filename=sphinxcontrib_redoc-1.6.0-py3-none-any.whl size=299648 sha256=a9f75835d62f6ba526ab4083db462b7aed57d32c59a9e6c42c3dd34ba179ec33 Stored in directory: /tmp/pip-ephem-wheel-cache-wd3_k61_/wheels/c3/f3/09/ca56bcb5e735dbf9d7ccfcbfa66480b60179becfe44e425e7b Successfully built sphinx-jsonschema sphinxcontrib-redoc Installing collected packages: pure-eval, ptyprocess, namex, libclang, flatbuffers, fastjsonschema, zipp, xmltodict, wrapt, werkzeug, websockets, wcwidth, urllib3, typing-extensions, traitlets, tornado, tomli, toml, termcolor, tensorboard-data-server, tabulate, soupsieve, snowballstemmer, sniffio, smmap, six, setuptools, rpds-py, pyzmq, pyyaml, python-dotenv, pygments, pyarrow, psutil, protobuf, platformdirs, pillow, pexpect, parso, packaging, opt-einsum, numpy, nest-asyncio, mdurl, markdown, jsonpointer, jmespath, imagesize, idna, h11, greenlet, gast, executing, docutils, decorator, debugpy, comm, colorama, click, charset-normalizer, certifi, babel, attrs, asttokens, appnope, annotated-types, alabaster, absl-py, wheel, uvicorn, typing-inspection, stack-data, sqlalchemy, requests, referencing, python-dateutil, pydantic-core, prompt-toolkit, optree, ml-dtypes, matplotlib-inline, markdown-it-py, jupyter-core, jedi, importlib-metadata, h5py, grpcio, google-pasta, gitdb, exceptiongroup, beautifulsoup4, accessible-pygments, tensorboard, sphinx-jsonschema, sphinx, rich, pydantic, mdit-py-plugins, jupyter-client, jsonschema-specifications, ipython, gitpython, botocore, astunparse, anyio, watchfiles, starlette, sphinxext-opengraph, sphinxemoji, sphinx-remove-toctrees, sphinx-llms-txt, sphinx-last-updated-by-git, sphinx-docsearch, sphinx-design, sphinx-copybutton, sphinx-collections, sphinx-click, s3transfer, pydata-sphinx-theme, pydantic-settings, myst-parser, keras, jsonschema, ipykernel, tensorflow, sphinxcontrib-redoc, sphinx-sitemap, sphinx-autobuild, nbformat, boto3, autodoc-pydantic, tf-keras, nbclient, jupytext, jupyter-cache, myst-nb Attempting uninstall: urllib3 Found existing installation: urllib3 2.7.0 Uninstalling urllib3-2.7.0: Successfully uninstalled urllib3-2.7.0 Attempting uninstall: tomli Found existing installation: tomli 2.4.1 Uninstalling tomli-2.4.1: Successfully uninstalled tomli-2.4.1 Attempting uninstall: snowballstemmer Found existing installation: snowballstemmer 3.1.1 Uninstalling snowballstemmer-3.1.1: Successfully uninstalled snowballstemmer-3.1.1 Attempting uninstall: setuptools Found existing installation: setuptools 82.0.1 Uninstalling setuptools-82.0.1: Successfully uninstalled setuptools-82.0.1 Attempting uninstall: pygments Found existing installation: Pygments 2.20.0 Uninstalling Pygments-2.20.0: Successfully uninstalled Pygments-2.20.0 Attempting uninstall: packaging Found existing installation: packaging 26.2 Uninstalling packaging-26.2: Successfully uninstalled packaging-26.2 Attempting uninstall: imagesize Found existing installation: imagesize 2.0.0 Uninstalling imagesize-2.0.0: Successfully uninstalled imagesize-2.0.0 Attempting uninstall: idna Found existing installation: idna 3.18 Uninstalling idna-3.18: Successfully uninstalled idna-3.18 Attempting uninstall: docutils Found existing installation: docutils 0.21.2 Uninstalling docutils-0.21.2: Successfully uninstalled docutils-0.21.2 Attempting uninstall: charset-normalizer Found existing installation: charset-normalizer 3.4.7 Uninstalling charset-normalizer-3.4.7: Successfully uninstalled charset-normalizer-3.4.7 Attempting uninstall: certifi Found existing installation: certifi 2026.6.17 Uninstalling certifi-2026.6.17: Successfully uninstalled certifi-2026.6.17 Attempting uninstall: babel Found existing installation: babel 2.18.0 Uninstalling babel-2.18.0: Successfully uninstalled babel-2.18.0 Attempting uninstall: alabaster Found existing installation: alabaster 1.0.0 Uninstalling alabaster-1.0.0: Successfully uninstalled alabaster-1.0.0 Attempting uninstall: wheel Found existing installation: wheel 0.40.0 Uninstalling wheel-0.40.0: Successfully uninstalled wheel-0.40.0 Attempting uninstall: requests Found existing installation: requests 2.34.2 Uninstalling requests-2.34.2: Successfully uninstalled requests-2.34.2 Attempting uninstall: sphinx Found existing installation: Sphinx 8.1.3 Uninstalling Sphinx-8.1.3: Successfully uninstalled Sphinx-8.1.3 Successfully installed absl-py-2.4.0 accessible-pygments-0.0.5 alabaster-0.7.16 annotated-types-0.7.0 anyio-4.11.0 appnope-0.1.4 asttokens-3.0.0 astunparse-1.6.3 attrs-25.4.0 autodoc-pydantic-2.2.0 babel-2.17.0 beautifulsoup4-4.14.2 boto3-1.34.69 botocore-1.34.162 certifi-2025.10.5 charset-normalizer-3.4.4 click-8.1.7 colorama-0.4.6 comm-0.2.3 debugpy-1.8.17 decorator-5.2.1 docutils-0.20.1 exceptiongroup-1.3.0 executing-2.2.1 fastjsonschema-2.21.2 flatbuffers-25.12.19 gast-0.7.0 gitdb-4.0.12 gitpython-3.1.46 google-pasta-0.2.0 greenlet-3.2.4 grpcio-1.78.0 h11-0.16.0 h5py-3.15.1 idna-3.11 imagesize-1.4.1 importlib-metadata-8.7.0 ipykernel-7.0.1 ipython-8.37.0 jedi-0.19.2 jmespath-1.0.1 jsonpointer-3.0.0 jsonschema-4.25.1 jsonschema-specifications-2025.9.1 jupyter-cache-0.6.1 jupyter-client-8.6.3 jupyter-core-5.9.1 jupytext-1.15.2 keras-3.12.1 libclang-18.1.1 markdown-3.10.2 markdown-it-py-3.0.0 matplotlib-inline-0.1.7 mdit-py-plugins-0.5.0 mdurl-0.1.2 ml-dtypes-0.5.4 myst-nb-1.4.0 myst-parser-2.0.0 namex-0.1.0 nbclient-0.7.4 nbformat-5.10.4 nest-asyncio-1.6.0 numpy-1.26.4 opt-einsum-3.4.0 optree-0.18.0 packaging-25.0 parso-0.8.5 pexpect-4.9.0 pillow-12.1.1 platformdirs-4.5.0 prompt-toolkit-3.0.52 protobuf-6.33.5 psutil-7.1.0 ptyprocess-0.7.0 pure-eval-0.2.3 pyarrow-19.0.1 pydantic-2.12.4 pydantic-core-2.41.5 pydantic-settings-2.2.1 pydata-sphinx-theme-0.17.1 pygments-2.16.1 python-dateutil-2.9.0.post0 python-dotenv-1.1.1 pyyaml-6.0.3 pyzmq-27.1.0 referencing-0.37.0 requests-2.32.5 rich-14.3.3 rpds-py-0.27.1 s3transfer-0.10.4 setuptools-80.9.0 six-1.17.0 smmap-5.0.2 sniffio-1.3.1 snowballstemmer-3.0.1 soupsieve-2.8 sphinx-7.3.7 sphinx-autobuild-2024.4.16 sphinx-click-5.1.0 sphinx-collections-0.3.1 sphinx-copybutton-0.5.2 sphinx-design-0.5.0 sphinx-docsearch-0.0.7 sphinx-jsonschema-1.19.1 sphinx-last-updated-by-git-0.3.8 sphinx-llms-txt-0.7.1 sphinx-remove-toctrees-0.0.3 sphinx-sitemap-2.9.0 sphinxcontrib-redoc-1.6.0 sphinxemoji-0.3.2 sphinxext-opengraph-0.13.0 sqlalchemy-2.0.44 stack-data-0.6.3 starlette-0.48.0 tabulate-0.9.0 tensorboard-2.20.0 tensorboard-data-server-0.7.2 tensorflow-2.20.0 termcolor-3.3.0 tf-keras-2.20.1 toml-0.10.2 tomli-2.3.0 tornado-6.5.2 traitlets-5.14.3 typing-extensions-4.15.0 typing-inspection-0.4.2 urllib3-1.26.20 uvicorn-0.37.0 watchfiles-1.1.1 wcwidth-0.2.14 websockets-15.0.1 werkzeug-3.1.6 wheel-0.46.3 wrapt-2.1.1 xmltodict-0.13.0 zipp-3.23.0 [rtd-command-info] start-time: 2026-06-23T14:03:33.950635Z, end-time: 2026-06-23T14:09:40.909982Z, duration: 366, exit-code: 0 if [ "${READTHEDOCS_VERSION_TYPE:-}" = "external" ]; then echo "PR build; attempting incremental build from the master doc cache." make -C doc rtd HTMLDIR="$READTHEDOCS_OUTPUT/html" || make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" else echo "Branch/tag build; running a full clean build." make -C doc html HTMLDIR="$READTHEDOCS_OUTPUT/html" fi PR build; attempting incremental build from the master doc cache. make: Entering directory '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc' python load_doc_cache.py --ray-dir=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277 Doc build environment pickle file does not exist. Loading global cache ... Use build cache for commit 33810474d03eda9b4cbc24fbb5a578f5faa835bc Successfully downloaded /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc.tgz Extracted /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc.tgz to /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc find source/serve/api/doc/ -name "ray.serve.*.rst" -delete 2>/dev/null || true python update_cache_env.py --ray-dir=/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277 multiple files found for the document "_collections/data/examples/llm_batch_inference_text/README": ['_collections/data/examples/llm_batch_inference_text/README.md', '_collections/data/examples/llm_batch_inference_text/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/data/examples/llm_batch_inference_text/README.ipynb' for the build. multiple files found for the document "_collections/data/examples/llm_batch_inference_vision/README": ['_collections/data/examples/llm_batch_inference_vision/README.md', '_collections/data/examples/llm_batch_inference_vision/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/data/examples/llm_batch_inference_vision/README.ipynb' for the build. multiple files found for the document "_collections/data/examples/unstructured_data_ingestion/README": ['_collections/data/examples/unstructured_data_ingestion/README.md', '_collections/data/examples/unstructured_data_ingestion/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/data/examples/unstructured_data_ingestion/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/e2e-audio/README": ['_collections/ray-overview/examples/e2e-audio/README.md', '_collections/ray-overview/examples/e2e-audio/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/e2e-audio/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/e2e-multimodal-ai-workloads/README": ['_collections/ray-overview/examples/e2e-multimodal-ai-workloads/README.md', '_collections/ray-overview/examples/e2e-multimodal-ai-workloads/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/e2e-multimodal-ai-workloads/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/e2e-rag/README": ['_collections/ray-overview/examples/e2e-rag/README.md', '_collections/ray-overview/examples/e2e-rag/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/e2e-rag/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/e2e-timeseries/README": ['_collections/ray-overview/examples/e2e-timeseries/README.md', '_collections/ray-overview/examples/e2e-timeseries/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/e2e-timeseries/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/e2e-xgboost/README": ['_collections/ray-overview/examples/e2e-xgboost/README.md', '_collections/ray-overview/examples/e2e-xgboost/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/e2e-xgboost/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/entity-recognition-with-llms/README": ['_collections/ray-overview/examples/entity-recognition-with-llms/README.md', '_collections/ray-overview/examples/entity-recognition-with-llms/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/entity-recognition-with-llms/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/langchain_agent_ray_serve/content/README": ['_collections/ray-overview/examples/langchain_agent_ray_serve/content/README.md', '_collections/ray-overview/examples/langchain_agent_ray_serve/content/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/langchain_agent_ray_serve/content/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/llamafactory-llm-fine-tune/README": ['_collections/ray-overview/examples/llamafactory-llm-fine-tune/README.md', '_collections/ray-overview/examples/llamafactory-llm-fine-tune/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/llamafactory-llm-fine-tune/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/mcp-ray-serve/README": ['_collections/ray-overview/examples/mcp-ray-serve/README.md', '_collections/ray-overview/examples/mcp-ray-serve/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/mcp-ray-serve/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/multi_agent_a2a/README": ['_collections/ray-overview/examples/multi_agent_a2a/README.md', '_collections/ray-overview/examples/multi_agent_a2a/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/multi_agent_a2a/README.ipynb' for the build. multiple files found for the document "_collections/ray-overview/examples/object-detection/README": ['_collections/ray-overview/examples/object-detection/README.md', '_collections/ray-overview/examples/object-detection/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/ray-overview/examples/object-detection/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/gpt-oss/README": ['_collections/serve/tutorials/deployment-serve-llm/gpt-oss/README.md', '_collections/serve/tutorials/deployment-serve-llm/gpt-oss/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/gpt-oss/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/hybrid-reasoning-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/hybrid-reasoning-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/hybrid-reasoning-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/hybrid-reasoning-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/large-size-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/large-size-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/large-size-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/large-size-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/medium-size-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/medium-size-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/medium-size-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/medium-size-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/reasoning-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/reasoning-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/reasoning-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/reasoning-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/small-size-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/small-size-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/small-size-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/small-size-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/deployment-serve-llm/vision-llm/README": ['_collections/serve/tutorials/deployment-serve-llm/vision-llm/README.md', '_collections/serve/tutorials/deployment-serve-llm/vision-llm/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/deployment-serve-llm/vision-llm/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/model-composition-recsys/README": ['_collections/serve/tutorials/model-composition-recsys/README.md', '_collections/serve/tutorials/model-composition-recsys/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/model-composition-recsys/README.ipynb' for the build. multiple files found for the document "_collections/serve/tutorials/model_multiplexing_forecast/README": ['_collections/serve/tutorials/model_multiplexing_forecast/README.md', '_collections/serve/tutorials/model_multiplexing_forecast/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/serve/tutorials/model_multiplexing_forecast/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/deepspeed_finetune/README": ['_collections/train/examples/pytorch/deepspeed_finetune/README.md', '_collections/train/examples/pytorch/deepspeed_finetune/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/deepspeed_finetune/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/distributing-pytorch/README": ['_collections/train/examples/pytorch/distributing-pytorch/README.md', '_collections/train/examples/pytorch/distributing-pytorch/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/distributing-pytorch/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/pytorch-fsdp/README": ['_collections/train/examples/pytorch/pytorch-fsdp/README.md', '_collections/train/examples/pytorch/pytorch-fsdp/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/pytorch-fsdp/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/pytorch-profiling/README": ['_collections/train/examples/pytorch/pytorch-profiling/README.md', '_collections/train/examples/pytorch/pytorch-profiling/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/pytorch-profiling/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/tensor_parallel_autotp/README": ['_collections/train/examples/pytorch/tensor_parallel_autotp/README.md', '_collections/train/examples/pytorch/tensor_parallel_autotp/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/tensor_parallel_autotp/README.ipynb' for the build. multiple files found for the document "_collections/train/examples/pytorch/tensor_parallel_dtensor/README": ['_collections/train/examples/pytorch/tensor_parallel_dtensor/README.md', '_collections/train/examples/pytorch/tensor_parallel_dtensor/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_collections/train/examples/pytorch/tensor_parallel_dtensor/README.ipynb' for the build. multiple files found for the document "_templates/template": ['_templates/template.md', '_templates/template.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/_templates/template.ipynb' for the build. multiple files found for the document "serve/tutorials/video-analysis/README": ['serve/tutorials/video-analysis/README.md', 'serve/tutorials/video-analysis/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/tutorials/video-analysis/README.ipynb' for the build. multiple files found for the document "train/examples/jax/intro_to_jax_trainer/README": ['train/examples/jax/intro_to_jax_trainer/README.md', 'train/examples/jax/intro_to_jax_trainer/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/train/examples/jax/intro_to_jax_trainer/README.ipynb' for the build. multiple files found for the document "train/examples/transformers/transformer_reinforcement_learning/README": ['train/examples/transformers/transformer_reinforcement_learning/README.md', 'train/examples/transformers/transformer_reinforcement_learning/README.ipynb'] Use '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/train/examples/transformers/transformer_reinforcement_learning/README.ipynb' for the build. Updating cache environment ... Timestamp change operation completed. sphinx-build -W --keep-going -b html -d _build/doctrees -W -j auto source _build/html Running Sphinx v7.3.7 /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages/sphinxcontrib/redoc.py:18: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. import pkg_resources matplotlib is not installed, social cards will not be generated DocSearch: set up... done Read in collections ... asynchronous_inference: Initialised audio-dataset-curation-llm-judge: Initialised deepspeed_finetune: Initialised deployment-serve-llm: Initialised distributing-pytorch: Initialised e2e-rag-deepdive: Initialised e2e-timeseries-forecasting: Initialised entity-recognition-with-llms: Initialised image-search-and-classification: Initialised llm_batch_inference_text: Initialised llm_batch_inference_vision: Initialised langchain-agent-ray-serve: Initialised llm_finetuning: Initialised multi_agent_a2a: Initialised mcp-ray-serve: Initialised model-composition-recsys: Initialised model-multiplexing: Initialised object-detection-video-processing: Initialised ray_train_workloads: Initialised pytorch-fsdp: Initialised pytorch-profiling: Initialised tensor_parallel_autotp: Initialised tensor_parallel_dtensor: Initialised tune_pytorch_asha: Initialised unstructured_data_ingestion: Initialised xgboost-training-and-serving: Initialised Clean collections ... Executing collections ... asynchronous_inference: (FunctionDriver) Run function... audio-dataset-curation-llm-judge: (FunctionDriver) Run function... deepspeed_finetune: (FunctionDriver) Run function... deployment-serve-llm: (FunctionDriver) Run function... distributing-pytorch: (FunctionDriver) Run function... e2e-rag-deepdive: (FunctionDriver) Run function... e2e-timeseries-forecasting: (FunctionDriver) Run function... entity-recognition-with-llms: (FunctionDriver) Run function... image-search-and-classification: (FunctionDriver) Run function... llm_batch_inference_text: (FunctionDriver) Run function... llm_batch_inference_vision: (FunctionDriver) Run function... langchain-agent-ray-serve: (FunctionDriver) Run function... llm_finetuning: (FunctionDriver) Run function... multi_agent_a2a: (FunctionDriver) Run function... mcp-ray-serve: (FunctionDriver) Run function... model-composition-recsys: (FunctionDriver) Run function... model-multiplexing: (FunctionDriver) Run function... object-detection-video-processing: (FunctionDriver) Run function... ray_train_workloads: (FunctionDriver) Run function... pytorch-fsdp: (FunctionDriver) Run function... pytorch-profiling: (FunctionDriver) Run function... tensor_parallel_autotp: (FunctionDriver) Run function... tensor_parallel_dtensor: (FunctionDriver) Run function... tune_pytorch_asha: (FunctionDriver) Run function... unstructured_data_ingestion: (FunctionDriver) Run function... xgboost-training-and-serving: (FunctionDriver) Run function... loading pickled environment... /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages/sphinx/environment/__init__.py:280: RemovedInSphinx80Warning: Sphinx 8 will drop support for representing paths as strings. Use "pathlib.Path" or "os.fspath" instead. if self.srcdir and self.srcdir != app.srcdir: done myst v2.0.0: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'colon_fence', 'deflist', 'smartquotes', 'amsmath', 'html_admonition', 'replacements', 'dollarmath', 'html_image'}, disable_syntax=[], all_links_external=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) myst-nb v1.4.0: NbParserConfig(custom_formats={}, metadata_key='mystnb', cell_metadata_key='mystnb', kernel_rgx_aliases={}, eval_name_regex='^[a-zA-Z_][a-zA-Z0-9_]*$', execution_mode='off', execution_cache_path='', execution_excludepatterns=(), execution_timeout=30, execution_in_temp=False, execution_allow_errors=False, execution_raise_on_error=False, execution_show_tb=False, merge_streams=False, render_plugin='default', remove_code_source=False, remove_code_outputs=False, scroll_outputs=False, code_prompt_show='Show code cell {type}', code_prompt_hide='Hide code cell {type}', number_source_lines=False, output_stderr='show', render_text_lexer='myst-ansi', render_error_lexer='ipythontb', render_image_options={}, render_figure_options={}, render_markdown_format='commonmark', output_folder='build', append_css=True, metadata_to_fm=False) Using jupyter-cache at: /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/_build/.jupyter_cache [autosummary] generating autosummary for: _collections/data/examples/llm_batch_inference_text/README.ipynb, _collections/data/examples/llm_batch_inference_vision/README.ipynb, _collections/data/examples/unstructured_data_ingestion/README.ipynb, _collections/ray-overview/examples/e2e-audio/README.ipynb, _collections/ray-overview/examples/e2e-multimodal-ai-workloads/README.ipynb, _collections/ray-overview/examples/e2e-multimodal-ai-workloads/notebooks/01-Batch-Inference.ipynb, _collections/ray-overview/examples/e2e-multimodal-ai-workloads/notebooks/02-Distributed-Training.ipynb, _collections/ray-overview/examples/e2e-multimodal-ai-workloads/notebooks/03-Online-Serving.ipynb, _collections/ray-overview/examples/e2e-rag/README.ipynb, _collections/ray-overview/examples/e2e-rag/notebooks/01_(Optional)_Regular_Document_Processing_Pipeline.ipynb, ..., tune/tutorials/tune-metrics.rst, tune/tutorials/tune-output.rst, tune/tutorials/tune-resources.rst, tune/tutorials/tune-run.rst, tune/tutorials/tune-scalability.rst, tune/tutorials/tune-search-spaces.rst, tune/tutorials/tune-stopping.rst, tune/tutorials/tune-storage.rst, tune/tutorials/tune-trial-checkpoints.rst, tune/tutorials/tune_get_data_in_and_out.md 2026-06-23 14:04:03,051 WARNING compression.py:17 -- lz4 not available, disabling sample compression. This will significantly impact RLlib performance. To install lz4, run `pip install lz4`. 2026-06-23 14:04:09,515 WARNING distributions.py:4 -- DeprecationWarning: `ray.rllib.models.distributions.Distribution` has been deprecated. Use `ray.rllib.core.distribution.distribution.Distribution` instead. This will raise an error in the future! [autosummary] generating autosummary for: /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.Application.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.Deployment.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.autoscaling_policy.replica_queue_length_autoscaling_policy.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.batch.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.AggregationFunction.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.AutoscalingConfig.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.AutoscalingContext.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.AutoscalingPolicy.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.ControllerOptions.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.config.DeploymentActorConfig.rst, ..., /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.schema.TaskProcessorAdapter.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.schema.TaskProcessorConfig.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.schema.TaskResult.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.schema.gRPCOptionsSchema.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.shutdown.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.shutdown_async.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.start.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.status.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/train/api/doc/ray.train.Result.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/train/api/doc/ray.train.Result.rst [autosummary] generating autosummary for: /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.GangContext.gang_id.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.GangContext.member_replica_ids.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.GangContext.pg_name.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.GangContext.rank.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.GangContext.world_size.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.ReplicaContext.app_name.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.ReplicaContext.code_version.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.ReplicaContext.deployment.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.ReplicaContext.gang_context.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.context.ReplicaContext.rank.rst, ..., /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.node_id.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.push_proxy_handle.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.release_slot.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.replica_id.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.replica_metadata.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.reserve_slot.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.routing_stats.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.stub.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.try_send_request.rst, /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/serve/api/doc/ray.serve.request_router.RunningReplica.update_replica_info.rst [autosummary] generating autosummary for: /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/source/data/api/_autogen.rst building [mo]: targets for 0 po files that are out of date writing output... building [html]: targets for 3918 source files that are out of date updating environment: [config changed ('llms_txt_exclude')] 4096 added, 1 changed, 0 removed reading sources... [ 2%] _collections/data/examples/llm_batch_inference_text/README .. cluster/kubernetes/k8s-ecosystem/kueue reading sources... [ 5%] cluster/kubernetes/k8s-ecosystem/metrics-references .. cluster/running-applications/job-submission/doc/ray.job_submission.JobStatus.isspace /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages/nbformat/__init__.py:96: MissingIDFieldWarning: Cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future. validate(nb) reading sources... [ 7%] cluster/running-applications/job-submission/doc/ray.job_submission.JobStatus.istitle .. cluster/vms/references/ray-cluster-configuration reading sources... [ 10%] cluster/vms/user-guides/community/index .. data/api/doc/ray.data.Dataset.write_datasink reading sources... [ 12%] data/api/doc/ray.data.Dataset.write_iceberg .. data/api/doc/ray.data.aggregate.Sum.finalize reading sources... [ 15%] data/api/doc/ray.data.aggregate.Sum.get_agg_name .. data/api/doc/ray.data.datasource.PartitionStyle.HIVE reading sources... [ 17%] data/api/doc/ray.data.datasource.PartitionStyle.capitalize .. data/api/doc/ray.data.expressions.BinaryExpr.name reading sources... [ 20%] data/api/doc/ray.data.expressions.BinaryExpr.negate .. data/api/doc/ray.data.expressions.Expr.floor reading sources... [ 22%] data/api/doc/ray.data.expressions.Expr.get_type .. data/api/doc/ray.data.expressions.RandomExpr.alias reading sources... [ 24%] data/api/doc/ray.data.expressions.RandomExpr.arr .. data/api/doc/ray.data.expressions.UDFExpr.nullable reading sources... [ 27%] data/api/doc/ray.data.expressions.UDFExpr.power .. data/api/doc/ray.data.from_numpy reading sources... [ 29%] data/api/doc/ray.data.from_numpy_refs .. data/api/doc/ray.data.preprocessors.CountVectorizer.get_version reading sources... [ 32%] data/api/doc/ray.data.preprocessors.CountVectorizer.max_features .. data/api/doc/ray.data.preprocessors.MaxAbsScaler.set_version reading sources... [ 34%] data/api/doc/ray.data.preprocessors.MaxAbsScaler.stat_computation_plan .. data/api/doc/ray.data.preprocessors.PowerTransformer.get_version reading sources... [ 37%] data/api/doc/ray.data.preprocessors.PowerTransformer.method .. data/api/doc/ray.data.preprocessors.UniformKBinsDiscretizer.serialize reading sources... [ 39%] data/api/doc/ray.data.preprocessors.UniformKBinsDiscretizer.set_preprocessor_class_id .. ray-core/actors reading sources... [ 41%] ray-core/actors/actor-utils .. ray-core/api/doc/ray.job_config.JobConfig.metadata reading sources... [ 44%] ray-core/api/doc/ray.job_config.JobConfig.ray_namespace .. ray-core/api/doc/ray.util.placement_group.PlacementGroup reading sources... [ 46%] ray-core/api/doc/ray.util.placement_group.PlacementGroup.bundle_count .. ray-core/compiled-graph/doc/ray.dag.output_node.MultiOutputNode.get_args reading sources... [ 49%] ray-core/compiled-graph/doc/ray.dag.output_node.MultiOutputNode.get_kwargs .. ray-more-libs/doc/ray.util.dask.RayDaskCallback reading sources... [ 51%] ray-more-libs/doc/ray.util.dask.RayDaskCallback.ray_active .. rllib/package_ref/distributions reading sources... [ 54%] rllib/package_ref/doc/ray.rllib.algorithms.algorithm.Algorithm .. rllib/package_ref/doc/ray.rllib.algorithms.algorithm_config.AlgorithmConfig.multi_agent /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/envs/64277/lib/python3.10/site-packages/nbformat/__init__.py:96: MissingIDFieldWarning: Cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future. validate(nb) reading sources... [ 56%] rllib/package_ref/doc/ray.rllib.algorithms.algorithm_config.AlgorithmConfig.num_consecutive_worker_failures_tolerance .. rllib/package_ref/doc/ray.rllib.core.learner.learner_group.LearnerGroup.METADATA_FILE_NAME reading sources... [ 59%] rllib/package_ref/doc/ray.rllib.core.learner.learner_group.LearnerGroup.STATE_FILE_NAME .. rllib/package_ref/doc/ray.rllib.core.rl_module.multi_rl_module.MultiRLModuleSpec.update reading sources... [ 61%] rllib/package_ref/doc/ray.rllib.core.rl_module.rl_module.RLModule .. rllib/package_ref/doc/ray.rllib.utils.metrics.metrics_logger.MetricsLogger.aggregate reading sources... [ 63%] rllib/package_ref/doc/ray.rllib.utils.metrics.metrics_logger.MetricsLogger.compile .. rllib/package_ref/doc/ray.rllib.utils.torch_utils.set_torch_seed reading sources... [ 66%] rllib/package_ref/doc/ray.rllib.utils.torch_utils.softmax_cross_entropy_with_logits .. rllib/package_ref/env/env/ray.rllib.env.single_agent_episode.SingleAgentEpisode.multi_agent_episode_id reading sources... [ 68%] rllib/package_ref/env/env/ray.rllib.env.single_agent_episode.SingleAgentEpisode.observation_space .. serve/api/doc/ray.serve.exceptions.gRPCStatusError reading sources... [ 71%] serve/api/doc/ray.serve.get_app_handle .. serve/api/doc/ray.serve.request_router.RequestRouter.max_num_routing_tasks reading sources... [ 73%] serve/api/doc/ray.serve.request_router.RequestRouter.max_num_routing_tasks_cap .. serve/llm/user-guides/data-parallel-attention reading sources... [ 76%] serve/llm/user-guides/deployment-initialization .. train/api/doc/ray.train.LoggingConfig reading sources... [ 78%] train/api/doc/ray.train.LoggingConfig.log_level .. train/api/doc/ray.train.data_parallel_trainer.DataParallelTrainer.setup reading sources... [ 80%] train/api/doc/ray.train.error.SessionMisuseError .. train/api/doc/ray.train.torch.torch_trainer.TorchTrainer.as_trainable reading sources... [ 83%] train/api/doc/ray.train.torch.torch_trainer.TorchTrainer.can_restore .. train/user-guides/experiment-tracking reading sources... [ 85%] train/user-guides/fault-tolerance .. tune/api/doc/ray.tune.ExperimentAnalysis.best_result reading sources... [ 88%] tune/api/doc/ray.tune.ExperimentAnalysis.best_result_df .. tune/api/doc/ray.tune.TuneContext.get_trial_dir reading sources... [ 90%] tune/api/doc/ray.tune.TuneContext.get_trial_id .. tune/api/doc/ray.tune.run reading sources... [ 93%] tune/api/doc/ray.tune.run_experiments .. tune/api/doc/ray.tune.schedulers.TrialScheduler.save reading sources... [ 95%] tune/api/doc/ray.tune.schedulers.TrialScheduler.set_search_properties .. tune/api/doc/ray.tune.search.bohb.TuneBOHB.save_to_dir reading sources... [ 98%] tune/api/doc/ray.tune.search.create_searcher .. tune/examples/includes/custom_func_checkpointing reading sources... [100%] tune/examples/includes/hyperband_example .. tune/tutorials/tune_get_data_in_and_out looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done copying assets... copying downloadable files... [ 50%] ../../python/ray/tune/examples/mnist_pytorch_trainable.py copying downloadable files... [100%] ../../python/ray/tune/examples/tune-default.yaml copying static files... done copying extra files... done done writing output... [ 3%] _collections/data/examples/llm_batch_inference_vision/README .. cluster/kubernetes/user-guides/configuring-autoscaling writing output... [ 6%] cluster/kubernetes/user-guides/configuring-ippr .. cluster/running-applications/job-submission/doc/ray.job_submission.JobSubmissionClient.get_job_logs writing output... [ 8%] cluster/running-applications/job-submission/doc/ray.job_submission.JobSubmissionClient.get_job_status .. data/api/doc/ray.data.Dataset.iter_internal_ref_bundles writing output... [ 11%] data/api/doc/ray.data.Dataset.iter_jax_batches .. data/api/doc/ray.data.aggregate.AggregateFnV2.combine writing output... [ 14%] data/api/doc/ray.data.aggregate.AggregateFnV2.finalize .. data/api/doc/ray.data.datasource.BlockBasedFileDatasink.on_write_failed writing output... [ 17%] data/api/doc/ray.data.datasource.BlockBasedFileDatasink.supports_distributed_writes .. data/api/doc/ray.data.expressions.BinaryExpr.floor writing output... [ 19%] data/api/doc/ray.data.expressions.BinaryExpr.is_in .. data/api/doc/ray.data.expressions.Expr.list writing output... [ 22%] data/api/doc/ray.data.expressions.Expr.ln .. data/api/doc/ray.data.expressions.RandomExpr.name writing output... [ 25%] data/api/doc/ray.data.expressions.RandomExpr.negate .. data/api/doc/ray.data.expressions.UUIDExpr.negate writing output... [ 28%] data/api/doc/ray.data.expressions.UUIDExpr.not_in .. data/api/doc/ray.data.preprocessors.Categorizer.output_columns writing output... [ 31%] data/api/doc/ray.data.preprocessors.Categorizer.preferred_batch_format .. data/api/doc/ray.data.preprocessors.HashingVectorizer.set_version writing output... [ 33%] data/api/doc/ray.data.preprocessors.HashingVectorizer.stat_computation_plan .. data/api/doc/ray.data.preprocessors.OrdinalEncoder.encode_lists writing output... [ 36%] data/api/doc/ray.data.preprocessors.OrdinalEncoder.fit .. data/api/doc/ray.data.preprocessors.UniformKBinsDiscretizer.get_preprocessor_class_id writing output... [ 39%] data/api/doc/ray.data.preprocessors.UniformKBinsDiscretizer.get_version .. ray-core/api/cli writing output... [ 42%] ray-core/api/core .. ray-core/api/doc/ray.runtime_context.RuntimeContext.get_node_id writing output... [ 44%] ray-core/api/doc/ray.runtime_context.RuntimeContext.get_node_labels .. ray-core/api/doc/ray.util.tpu.SlicePlacementGroup.num_hosts writing output... [ 47%] ray-core/api/doc/ray.util.tpu.SlicePlacementGroup.num_slices .. ray-core/patterns/actor-sync writing output... [ 50%] ray-core/patterns/closure-capture-large-objects .. ray-observability/user-guides/index writing output... [ 53%] ray-observability/user-guides/profiling .. rllib/package_ref/doc/ray.rllib.algorithms.algorithm_config.AlgorithmConfig.get_multi_agent_setup writing output... [ 56%] rllib/package_ref/doc/ray.rllib.algorithms.algorithm_config.AlgorithmConfig.get_multi_rl_module_spec .. rllib/package_ref/doc/ray.rllib.core.learner.learner_group.LearnerGroup writing output... [ 58%] rllib/package_ref/doc/ray.rllib.core.learner.learner_group.LearnerGroup.CLASS_AND_CTOR_ARGS_FILE_NAME .. rllib/package_ref/doc/ray.rllib.core.rl_module.rl_module.RLModule.forward_train writing output... [ 61%] rllib/package_ref/doc/ray.rllib.core.rl_module.rl_module.RLModule.framework .. rllib/package_ref/doc/ray.rllib.utils.replay_buffers.multi_agent_prioritized_replay_buffer.MultiAgentPrioritizedReplayBuffer.apply writing output... [ 64%] rllib/package_ref/doc/ray.rllib.utils.replay_buffers.multi_agent_prioritized_replay_buffer.MultiAgentPrioritizedReplayBuffer.get_host .. rllib/package_ref/env/env/ray.rllib.env.multi_agent_episode.MultiAgentEpisode.get_extra_model_outputs writing output... [ 67%] rllib/package_ref/env/env/ray.rllib.env.multi_agent_episode.MultiAgentEpisode.get_infos .. serve/advanced-guides/performance writing output... [ 69%] serve/advanced-guides/replica-ranks .. serve/api/doc/ray.serve.metrics.Histogram writing output... [ 72%] serve/api/doc/ray.serve.multiplexed .. serve/llm/architecture/index writing output... [ 75%] serve/llm/architecture/overview .. train/api/doc/ray.train.ReportedCheckpoint writing output... [ 78%] train/api/doc/ray.train.ReportedCheckpointStatus .. train/api/doc/ray.train.horovod.HorovodConfig.to_dict writing output... [ 81%] train/api/doc/ray.train.horovod.HorovodConfig.train_func_context .. train/api/doc/ray.train.xgboost.RayTrainReportCallback.CHECKPOINT_NAME writing output... [ 83%] train/api/doc/ray.train.xgboost.RayTrainReportCallback.get_model .. tune/api/doc/ray.tune.CLIReporter writing output... [ 86%] tune/api/doc/ray.tune.CLIReporter.DEFAULT_COLUMNS .. tune/api/doc/ray.tune.Trainable.iteration writing output... [ 89%] tune/api/doc/ray.tune.Trainable.load_checkpoint .. tune/api/doc/ray.tune.logger.aim.AimLoggerCallback writing output... [ 92%] tune/api/doc/ray.tune.logger.aim.AimLoggerCallback.VALID_HPARAMS .. tune/api/doc/ray.tune.schedulers.TrialScheduler.choose_trial_to_run writing output... [ 94%] tune/api/doc/ray.tune.schedulers.TrialScheduler.debug_string .. tune/api/doc/ray.tune.search.hebo.HEBOSearch.metric writing output... [ 97%] tune/api/doc/ray.tune.search.hebo.HEBOSearch.mode .. tune/examples/lightgbm_example writing output... [100%] tune/examples/nevergrad_example .. tune/tutorials/tune_get_data_in_and_out generating indices... genindex py-modindex done highlighting module code... [ 0%] functools highlighting module code... [ 1%] pydantic.fields highlighting module code... [ 1%] ray._private.ray_logging.logging_config highlighting module code... [ 1%] ray._private.state highlighting module code... [ 2%] ray._private.worker highlighting module code... [ 2%] ray.actor highlighting module code... [ 3%] ray.air.config highlighting module code... [ 3%] ray.air.integrations.comet highlighting module code... [ 3%] ray.air.integrations.mlflow highlighting module code... [ 4%] ray.air.integrations.wandb highlighting module code... [ 4%] ray.air.result highlighting module code... [ 4%] ray.autoscaler._private.fake_multi_node.test_utils highlighting module code... [ 5%] ray.autoscaler.sdk.sdk highlighting module code... [ 5%] ray.cluster_utils highlighting module code... [ 6%] ray.cross_language highlighting module code... [ 6%] ray.dag.compiled_dag_node highlighting module code... [ 6%] ray.dag.context highlighting module code... [ 7%] ray.dag.dag_node highlighting module code... [ 7%] ray.dag.input_node highlighting module code... [ 7%] ray.dag.output_node highlighting module code... [ 8%] ray.dashboard.modules.dashboard_sdk highlighting module code... [ 8%] ray.dashboard.modules.job.common highlighting module code... [ 9%] ray.dashboard.modules.job.pydantic_models highlighting module code... [ 9%] ray.dashboard.modules.job.sdk highlighting module code... [ 9%] ray.data._internal.compute highlighting module code... [ 10%] ray.data._internal.execution.interfaces.execution_options highlighting module code... [ 10%] ray.data._internal.logical.operators.n_ary_operator highlighting module code... [ 10%] ray.data._internal.random_config highlighting module code... [ 11%] ray.data.aggregate highlighting module code... [ 11%] ray.data.block highlighting module code... [ 12%] ray.data.checkpoint.interfaces highlighting module code... [ 12%] ray.data.context highlighting module code... [ 12%] ray.data.dataset highlighting module code... [ 13%] ray.data.datasource.datasink highlighting module code... [ 13%] ray.data.datasource.datasource highlighting module code... [ 13%] ray.data.datasource.file_based_datasource highlighting module code... [ 14%] ray.data.datasource.file_datasink highlighting module code... [ 14%] ray.data.datasource.file_meta_provider highlighting module code... [ 14%] ray.data.datasource.filename_provider highlighting module code... [ 15%] ray.data.datasource.partitioning highlighting module code... [ 15%] ray.data.datatype highlighting module code... [ 16%] ray.data.expressions highlighting module code... [ 16%] ray.data.grouped_data highlighting module code... [ 16%] ray.data.iterator highlighting module code... [ 17%] ray.data.llm highlighting module code... [ 17%] ray.data.namespace_expressions.arr_namespace highlighting module code... [ 17%] ray.data.namespace_expressions.dt_namespace highlighting module code... [ 18%] ray.data.namespace_expressions.list_namespace highlighting module code... [ 18%] ray.data.namespace_expressions.string_namespace highlighting module code... [ 19%] ray.data.namespace_expressions.struct_namespace highlighting module code... [ 19%] ray.data.preprocessor highlighting module code... [ 19%] ray.data.preprocessors.chain highlighting module code... [ 20%] ray.data.preprocessors.concatenator highlighting module code... [ 20%] ray.data.preprocessors.discretizer highlighting module code... [ 20%] ray.data.preprocessors.encoder highlighting module code... [ 21%] ray.data.preprocessors.hasher highlighting module code... [ 21%] ray.data.preprocessors.imputer highlighting module code... [ 22%] ray.data.preprocessors.normalizer highlighting module code... [ 22%] ray.data.preprocessors.scaler highlighting module code... [ 22%] ray.data.preprocessors.torch highlighting module code... [ 23%] ray.data.preprocessors.transformer highlighting module code... [ 23%] ray.data.preprocessors.vectorizer highlighting module code... [ 23%] ray.data.read_api highlighting module code... [ 24%] ray.data.stats highlighting module code... [ 24%] ray.exceptions highlighting module code... [ 25%] ray.experimental.collective.collective highlighting module code... [ 25%] ray.experimental.compiled_dag_ref highlighting module code... [ 25%] ray.experimental.rdt.rdt_manager highlighting module code... [ 26%] ray.experimental.rdt.tensor_transport_manager highlighting module code... [ 26%] ray.experimental.rdt.util highlighting module code... [ 26%] ray.job_config highlighting module code... [ 27%] ray.llm._internal.batch.processor.base highlighting module code... [ 27%] ray.llm._internal.common.base_pydantic highlighting module code... [ 28%] ray.llm._internal.common.utils.cloud_utils highlighting module code... [ 28%] ray.llm._internal.serve.core.configs.llm_config highlighting module code... [ 28%] ray.llm._internal.serve.core.ingress.ingress highlighting module code... [ 29%] ray.llm._internal.serve.core.server.llm_server highlighting module code... [ 29%] ray.remote_function highlighting module code... [ 29%] ray.rllib.algorithms.algorithm highlighting module code... [ 30%] ray.rllib.algorithms.algorithm_config highlighting module code... [ 30%] ray.rllib.algorithms.appo.appo highlighting module code... [ 30%] ray.rllib.algorithms.bc.bc highlighting module code... [ 31%] ray.rllib.algorithms.cql.cql highlighting module code... [ 31%] ray.rllib.algorithms.dqn.dqn highlighting module code... [ 32%] ray.rllib.algorithms.impala.impala highlighting module code... [ 32%] ray.rllib.algorithms.iql.iql highlighting module code... [ 32%] ray.rllib.algorithms.marwil.marwil highlighting module code... [ 33%] ray.rllib.algorithms.ppo.ppo highlighting module code... [ 33%] ray.rllib.algorithms.sac.sac highlighting module code... [ 33%] ray.rllib.callbacks.callbacks highlighting module code... [ 34%] ray.rllib.connectors.connector_pipeline_v2 highlighting module code... [ 34%] ray.rllib.connectors.connector_v2 highlighting module code... [ 35%] ray.rllib.connectors.env_to_module.observation_preprocessor highlighting module code... [ 35%] ray.rllib.core.distribution.distribution highlighting module code... [ 35%] ray.rllib.core.learner.learner highlighting module code... [ 36%] ray.rllib.core.learner.learner_group highlighting module code... [ 36%] ray.rllib.core.rl_module.apis.inference_only_api highlighting module code... [ 36%] ray.rllib.core.rl_module.apis.q_net_api highlighting module code... [ 37%] ray.rllib.core.rl_module.apis.self_supervised_loss_api highlighting module code... [ 37%] ray.rllib.core.rl_module.apis.target_network_api highlighting module code... [ 38%] ray.rllib.core.rl_module.apis.value_function_api highlighting module code... [ 38%] ray.rllib.core.rl_module.default_model_config highlighting module code... [ 38%] ray.rllib.core.rl_module.multi_rl_module highlighting module code... [ 39%] ray.rllib.core.rl_module.rl_module highlighting module code... [ 39%] ray.rllib.env.env_errors highlighting module code... [ 39%] ray.rllib.env.env_runner highlighting module code... [ 40%] ray.rllib.env.external.rllink highlighting module code... [ 40%] ray.rllib.env.multi_agent_env highlighting module code... [ 41%] ray.rllib.env.multi_agent_env_runner highlighting module code... [ 41%] ray.rllib.env.multi_agent_episode highlighting module code... [ 41%] ray.rllib.env.single_agent_env_runner highlighting module code... [ 42%] ray.rllib.env.single_agent_episode highlighting module code... [ 42%] ray.rllib.env.utils highlighting module code... [ 42%] ray.rllib.offline.offline_data highlighting module code... [ 43%] ray.rllib.offline.offline_env_runner highlighting module code... [ 43%] ray.rllib.offline.offline_prelearner highlighting module code... [ 43%] ray.rllib.utils.actor_manager highlighting module code... [ 44%] ray.rllib.utils.annotations highlighting module code... [ 44%] ray.rllib.utils.checkpoints highlighting module code... [ 45%] ray.rllib.utils.framework highlighting module code... [ 45%] ray.rllib.utils.metrics.metrics_logger highlighting module code... [ 45%] ray.rllib.utils.numpy highlighting module code... [ 46%] ray.rllib.utils.replay_buffers.base highlighting module code... [ 46%] ray.rllib.utils.replay_buffers.multi_agent_prioritized_replay_buffer highlighting module code... [ 46%] ray.rllib.utils.replay_buffers.multi_agent_replay_buffer highlighting module code... [ 47%] ray.rllib.utils.replay_buffers.prioritized_replay_buffer highlighting module code... [ 47%] ray.rllib.utils.replay_buffers.replay_buffer highlighting module code... [ 48%] ray.rllib.utils.replay_buffers.reservoir_replay_buffer highlighting module code... [ 48%] ray.rllib.utils.replay_buffers.utils highlighting module code... [ 48%] ray.rllib.utils.schedules.scheduler highlighting module code... [ 49%] ray.rllib.utils.torch_utils highlighting module code... [ 49%] ray.runtime_context highlighting module code... [ 49%] ray.runtime_env.runtime_env highlighting module code... [ 50%] ray.serve._private.common highlighting module code... [ 50%] ray.serve._private.request_router.common highlighting module code... [ 51%] ray.serve._private.request_router.replica_wrapper highlighting module code... [ 51%] ray.serve._private.request_router.request_router highlighting module code... [ 51%] ray.serve.api highlighting module code... [ 52%] ray.serve.autoscaling_policy highlighting module code... [ 52%] ray.serve.batching highlighting module code... [ 52%] ray.serve.config highlighting module code... [ 53%] ray.serve.context highlighting module code... [ 53%] ray.serve.deployment highlighting module code... [ 54%] ray.serve.exceptions highlighting module code... [ 54%] ray.serve.gang highlighting module code... [ 54%] ray.serve.grpc_util highlighting module code... [ 55%] ray.serve.handle highlighting module code... [ 55%] ray.serve.llm highlighting module code... [ 55%] ray.serve.metrics highlighting module code... [ 56%] ray.serve.schema highlighting module code... [ 56%] ray.serve.utils highlighting module code... [ 57%] ray.train highlighting module code... [ 57%] ray.train._checkpoint highlighting module code... [ 57%] ray.train._internal.data_config highlighting module code... [ 58%] ray.train._internal.session highlighting module code... [ 58%] ray.train.backend highlighting module code... [ 58%] ray.train.base_trainer highlighting module code... [ 59%] ray.train.collective highlighting module code... [ 59%] ray.train.context highlighting module code... [ 59%] ray.train.data_parallel_trainer highlighting module code... [ 60%] ray.train.error highlighting module code... [ 60%] ray.train.horovod.config highlighting module code... [ 61%] ray.train.huggingface.transformers._transformers_utils highlighting module code... [ 61%] ray.train.lightgbm._lightgbm_utils highlighting module code... [ 61%] ray.train.lightgbm.config highlighting module code... [ 62%] ray.train.lightgbm.lightgbm_trainer highlighting module code... [ 62%] ray.train.lightning._lightning_utils highlighting module code... [ 62%] ray.train.tensorflow.config highlighting module code... [ 63%] ray.train.tensorflow.keras highlighting module code... [ 63%] ray.train.tensorflow.tensorflow_trainer highlighting module code... [ 64%] ray.train.tensorflow.train_loop_utils highlighting module code... [ 64%] ray.train.torch.config highlighting module code... [ 64%] ray.train.torch.torch_trainer highlighting module code... [ 65%] ray.train.torch.xla.config highlighting module code... [ 65%] ray.train.v2.api.callback highlighting module code... [ 65%] ray.train.v2.api.context highlighting module code... [ 66%] ray.train.v2.api.data_parallel_trainer highlighting module code... [ 66%] ray.train.v2.api.result highlighting module code... [ 67%] ray.train.v2.horovod.horovod_trainer highlighting module code... [ 67%] ray.train.v2.jax.jax_trainer highlighting module code... [ 67%] ray.train.v2.lightgbm.lightgbm_trainer highlighting module code... [ 68%] ray.train.v2.tensorflow.tensorflow_trainer highlighting module code... [ 68%] ray.train.v2.torch.torch_trainer highlighting module code... [ 68%] ray.train.v2.torch.train_loop_utils highlighting module code... [ 69%] ray.train.v2.xgboost.xgboost_trainer highlighting module code... [ 69%] ray.train.xgboost._xgboost_utils highlighting module code... [ 70%] ray.train.xgboost.xgboost_trainer highlighting module code... [ 70%] ray.tune highlighting module code... [ 70%] ray.tune.analysis.experiment_analysis highlighting module code... [ 71%] ray.tune.callback highlighting module code... [ 71%] ray.tune.context highlighting module code... [ 71%] ray.tune.error highlighting module code... [ 72%] ray.tune.execution.placement_groups highlighting module code... [ 72%] ray.tune.experiment.experiment highlighting module code... [ 72%] ray.tune.experiment.trial highlighting module code... [ 73%] ray.tune.experimental.output highlighting module code... [ 73%] ray.tune.impl.tuner_internal highlighting module code... [ 74%] ray.tune.integration.lightgbm highlighting module code... [ 74%] ray.tune.integration.pytorch_lightning highlighting module code... [ 74%] ray.tune.integration.ray_train highlighting module code... [ 75%] ray.tune.integration.xgboost highlighting module code... [ 75%] ray.tune.logger.aim highlighting module code... [ 75%] ray.tune.logger.csv highlighting module code... [ 76%] ray.tune.logger.json highlighting module code... [ 76%] ray.tune.logger.logger highlighting module code... [ 77%] ray.tune.logger.tensorboardx highlighting module code... [ 77%] ray.tune.progress_reporter highlighting module code... [ 77%] ray.tune.registry highlighting module code... [ 78%] ray.tune.result_grid highlighting module code... [ 78%] ray.tune.schedulers highlighting module code... [ 78%] ray.tune.schedulers.async_hyperband highlighting module code... [ 79%] ray.tune.schedulers.hb_bohb highlighting module code... [ 79%] ray.tune.schedulers.hyperband highlighting module code... [ 80%] ray.tune.schedulers.median_stopping_rule highlighting module code... [ 80%] ray.tune.schedulers.pb2 highlighting module code... [ 80%] ray.tune.schedulers.pbt highlighting module code... [ 81%] ray.tune.schedulers.resource_changing_scheduler highlighting module code... [ 81%] ray.tune.schedulers.trial_scheduler highlighting module code... [ 81%] ray.tune.search highlighting module code... [ 82%] ray.tune.search.ax.ax_search highlighting module code... [ 82%] ray.tune.search.basic_variant highlighting module code... [ 83%] ray.tune.search.bayesopt.bayesopt_search highlighting module code... [ 83%] ray.tune.search.bohb.bohb_search highlighting module code... [ 83%] ray.tune.search.concurrency_limiter highlighting module code... [ 84%] ray.tune.search.hebo.hebo_search highlighting module code... [ 84%] ray.tune.search.hyperopt.hyperopt_search highlighting module code... [ 84%] ray.tune.search.nevergrad.nevergrad_search highlighting module code... [ 85%] ray.tune.search.optuna.optuna_search highlighting module code... [ 85%] ray.tune.search.repeater highlighting module code... [ 86%] ray.tune.search.sample highlighting module code... [ 86%] ray.tune.search.search_algorithm highlighting module code... [ 86%] ray.tune.search.searcher highlighting module code... [ 87%] ray.tune.search.variant_generator highlighting module code... [ 87%] ray.tune.search.zoopt.zoopt_search highlighting module code... [ 87%] ray.tune.stopper.experiment_plateau highlighting module code... [ 88%] ray.tune.stopper.function_stopper highlighting module code... [ 88%] ray.tune.stopper.maximum_iteration highlighting module code... [ 88%] ray.tune.stopper.noop highlighting module code... [ 89%] ray.tune.stopper.stopper highlighting module code... [ 89%] ray.tune.stopper.timeout highlighting module code... [ 90%] ray.tune.stopper.trial_plateau highlighting module code... [ 90%] ray.tune.syncer highlighting module code... [ 90%] ray.tune.trainable.function_trainable highlighting module code... [ 91%] ray.tune.trainable.trainable highlighting module code... [ 91%] ray.tune.trainable.util highlighting module code... [ 91%] ray.tune.tune highlighting module code... [ 92%] ray.tune.tune_config highlighting module code... [ 92%] ray.tune.tuner highlighting module code... [ 93%] ray.tune.utils.util highlighting module code... [ 93%] ray.util highlighting module code... [ 93%] ray.util.actor_pool highlighting module code... [ 94%] ray.util.annotations highlighting module code... [ 94%] ray.util.check_serialize highlighting module code... [ 94%] ray.util.collective.backend_registry highlighting module code... [ 95%] ray.util.collective.collective highlighting module code... [ 95%] ray.util.dask.callbacks highlighting module code... [ 96%] ray.util.helpers highlighting module code... [ 96%] ray.util.metrics highlighting module code... [ 96%] ray.util.placement_group highlighting module code... [ 97%] ray.util.queue highlighting module code... [ 97%] ray.util.rpdb highlighting module code... [ 97%] ray.util.scheduling_strategies highlighting module code... [ 98%] ray.util.serialization highlighting module code... [ 98%] ray.util.spark.cluster_init highlighting module code... [ 99%] ray.util.state.api highlighting module code... [ 99%] ray.util.state.common highlighting module code... [ 99%] ray.util.state.exception highlighting module code... [100%] ray.util.tpu highlighting module code... [100%] typing writing additional pages... done copying images... [ 0%] cluster/images/ray-cluster.svg copying images... [ 1%] cluster/images/ray-job-diagram.png copying images... [ 1%] cluster/kubernetes/images/benchmark_architecture.png copying images... [ 1%] cluster/kubernetes/images/benchmark_result.png copying images... [ 1%] cluster/kubernetes/images/ray_dashboard_deepseek.png copying images... [ 2%] cluster/kubernetes/images/ray_dashboard_llm_application.png copying images... [ 2%] cluster/kubernetes/images/serve_dashboard.png copying images... [ 2%] cluster/kubernetes/images/diffusion_results.png copying images... [ 3%] cluster/kubernetes/images/verl-ray-dashboard.png copying images... [ 3%] cluster/kubernetes/images/ray-dashboard.png copying images... [ 3%] cluster/kubernetes/images/dashboard_serve.png copying images... [ 3%] cluster/kubernetes/images/ray_on_kubernetes.png copying images... [ 4%] cluster/kubernetes/images/istio-kiali-1.png copying images... [ 4%] cluster/kubernetes/images/istio-kiali-2.png copying images... [ 4%] cluster/kubernetes/images/istio-jaeger-1.png copying images... [ 5%] cluster/kubernetes/images/istio-jaeger-2.png copying images... [ 5%] cluster/kubernetes/images/prometheus_web_ui.png copying images... [ 5%] cluster/kubernetes/images/grafana_ray_dashboard.png copying images... [ 5%] cluster/kubernetes/images/grafana_ray_dashboard2.png copying images... [ 6%] cluster/kubernetes/images/kuberay-dashboard-controller-runtime.png copying images... [ 6%] cluster/kubernetes/images/ray_dashboard_embed_grafana.png copying images... [ 6%] cluster/kubernetes/images/stack_trace.png copying images... [ 7%] cluster/kubernetes/images/cpu_flame_graph.png copying images... [ 7%] cluster/kubernetes/images/yunikorn-dashboard-apps-running.png copying images... [ 7%] cluster/kubernetes/images/yunikorn-dashboard-apps-pending.png copying images... [ 7%] cluster/kubernetes/images/AutoscalerOperator.svg copying images... [ 8%] cluster/kubernetes/images/rbac-clusterrole.svg copying images... [ 8%] cluster/kubernetes/images/rbac-role-one-namespace.svg copying images... [ 8%] cluster/kubernetes/images/rbac-role-multi-namespaces.svg copying images... [ 9%] cluster/kubernetes/user-guides/images/kuberay-dashboard-rayjobs.png copying images... [ 9%] cluster/kubernetes/user-guides/images/kuberay-historyserver-raycluster-status.png copying images... [ 9%] cluster/kubernetes/user-guides/images/kuberay-historyserver-raycluster-logs.png copying images... [ 9%] cluster/kubernetes/user-guides/images/kuberay-rayservice-haproxy-actors.png copying images... [ 10%] cluster/kubernetes/user-guides/images/loki-sidecar-logs.png copying images... [ 10%] cluster/kubernetes/user-guides/images/loki-logs.png copying images... [ 10%] cluster/kubernetes/images/rayservice-no-ray-serve-replica-dashboard.png copying images... [ 11%] cluster/kubernetes/images/interactive-dev.png copying images... [ 11%] cluster/kubernetes/images/production.png copying images... [ 11%] cluster/images/graphs.png copying images... [ 11%] images/autoscaler-status.png copying images... [ 12%] cluster/images/yarn-job.png copying images... [ 12%] cluster/images/yarn-job-dashboard.png copying images... [ 12%] data/images/dataset-shuffle.svg copying images... [ 13%] data/images/stream-example.png copying images... [ 13%] data/images/multimodal_inference_results.png copying images... [ 13%] data/images/dataset-arch.svg copying images... [ 14%] data/data-memory-model-1.svg copying images... [ 14%] data/data-memory-model-2.svg copying images... [ 14%] data/data-memory-model-3.svg copying images... [ 14%] ../_build/jupyter_execute/612f82906f846ed344b779b0175f581ceb56c3f5283b42fc83e00b8f80f3904b.png copying images... [ 15%] ../_build/jupyter_execute/ac3f24c4e3d83b1b0ff3c0e8f2d4cc3dd1d0d1ee1c62f94e936da56d9b469883.png copying images... [ 15%] ../_build/jupyter_execute/f6eabde66ffa1c2720d15d8f3b5c7b814f29c5617bf5676bf17dcd731fe73b9f.png copying images... [ 15%] ../_build/jupyter_execute/0b3ebf95963769a84edfe37dd3ee262a6922c54d89fe21b3c3ed13b1533e1c2e.png copying images... [ 16%] ../_build/jupyter_execute/22d723b4527fb4a5ec250816812faa0758e36961a95401435aae34e1bdecad5c.png copying images... [ 16%] ../_build/jupyter_execute/91f711e6630eac3c501de224df3f5aa80dc3eb4f2171e0fca2f9c6a8c46c841c.png copying images... [ 16%] ../_build/jupyter_execute/736657604a7b4c8b3f2dc0f44c0751a5ccf44b147549100feaa36e079c696bf5.png copying images... [ 16%] ../_build/jupyter_execute/fa7c6f0a81b04b0a274b2c770b5f5ee28f1ccea92938960de1f637db7dcf8cb6.png copying images... [ 17%] ../_build/jupyter_execute/1bfbfe49325fed87b579148a13e98788a4ea3c4d295a9525cd3031a9eb8d8b92.png copying images... [ 17%] ../_build/jupyter_execute/9b7bb855d83f101a312765bb1d3b489ffea958fe5486e0fb9997c444f481099a.png copying images... [ 17%] ../_build/jupyter_execute/dcfb9e74d5e2c80b6053ae5d9f03a1dc5da886a73116d25f89769a14b77a395f.png copying images... [ 18%] ../_build/jupyter_execute/99cc48399ce119902a2f9aa3330108ac8973c60131f94325949177824d1145fe.png copying images... [ 18%] ../_build/jupyter_execute/2e364ab27edad78af1772e1d8d3ff397febefec20d343ab5b449bad09fdefeef.png copying images... [ 18%] ../_build/jupyter_execute/5b1a113310c2fc8bd5fae12ab515bbb46bde7a8fd5215ab888560e335034bf09.png copying images... [ 18%] ../_build/jupyter_execute/77cfc3f82d4b234e10ff5009448162cad5e338455a15617290cc08d8346efebd.png copying images... [ 19%] data/ray-oom-kills-chart.png copying images... [ 19%] data/unexpected-system-level-chart.png copying images... [ 19%] data/node-count.png copying images... [ 20%] data/images/dataset-arch-with-blocks.svg copying images... [ 20%] data/images/get_execution_plan.svg copying images... [ 20%] data/images/streaming-topology.svg copying images... [ 20%] data/images/dataset_mixing/per_block_mix.png copying images... [ 21%] data/images/dataset_mixing/random_mix.png copying images... [ 21%] data/images/dataset-progress-bar.png copying images... [ 21%] data/images/data-overview-table.png copying images... [ 22%] data/images/data-overview-table-expanded.png copying images... [ 22%] data/images/data-dashboard.png copying images... [ 22%] images/air_arch_1.svg copying images... [ 22%] ray-air/images/air_arch_2.png copying images... [ 23%] images/ray-air.svg copying images... [ 23%] ray-air/images/why-air-2.svg copying images... [ 23%] images/shopify-workload.png copying images... [ 24%] images/spotify.png copying images... [ 24%] ray-contribute/esbonio.png copying images... [ 24%] ray-contribute/completion.png copying images... [ 24%] images/vale.png copying images... [ 25%] images/compiled_graph_viz.png copying images... [ 25%] ray-core/images/dashboard.png copying images... [ 25%] ray-core/images/monte_carlo_pi.png copying images... [ 26%] ray-core/images/hyperparameter.png copying images... [ 26%] ray-core/images/param_actor.png copying images... [ 26%] ray-core/images/pong-arch.svg copying images... [ 26%] ray-core/images/ray_repo.png copying images... [ 27%] ray-core/images/download_zip_url.png copying images... [ 27%] ray-core/images/object_spilling_architecture.png copying images... [ 27%] ray-core/images/object_spilling_states.png copying images... [ 28%] ray-core/images/object_spilling_spill_sequence.png copying images... [ 28%] ray-core/images/object_spilling_restore_sequence.png copying images... [ 28%] ray-core/images/object_spilling_delete_sequence.png copying images... [ 28%] ray-core/images/task_name_dashboard.png copying images... [ 29%] ray-core/images/limit-pending-tasks.svg copying images... [ 29%] ray-core/images/tree-of-tasks.svg copying images... [ 29%] ray-core/images/pipelining.svg copying images... [ 30%] ray-core/images/ray-get-loop.svg copying images... [ 30%] ray-core/images/ray-get-submission-order.svg copying images... [ 30%] ray-core/images/ray-get-too-many-objects.svg copying images... [ 30%] ray-core/images/tree-of-actors.svg copying images... [ 31%] ray-core/images/unnecessary-ray-get-anti.svg copying images... [ 31%] ray-core/images/unnecessary-ray-get-better.svg copying images... [ 31%] ray-core/images/memory.svg copying images... [ 32%] ray-core/images/pg_image_1.png copying images... [ 32%] ray-core/images/pg_image_2.png copying images... [ 32%] ray-core/images/pg_image_3.png copying images... [ 32%] ray-core/images/pg_image_4.png copying images... [ 33%] ray-core/images/pg_image_5.png copying images... [ 33%] ray-core/images/pg_image_6.png copying images... [ 33%] ray-core/images/time-based-killing-policy.png copying images... [ 34%] ray-core/images/oom_killer_example.svg copying images... [ 34%] ray-core/images/oom_killer_example_killed_one.svg copying images... [ 34%] ray-core/images/oom_killer_example_killed_two.svg copying images... [ 34%] ray-core/images/physical_resources_vs_logical_resources.svg copying images... [ 35%] images/pipeline.png copying images... [ 35%] images/tasks.png copying images... [ 35%] images/actors.png copying images... [ 36%] images/objects.png copying images... [ 36%] images/air-ecosystem.svg copying images... [ 36%] ray-observability/images/dashboard-overview.png copying images... [ 36%] ray-observability/images/what-is-ray-observability.png copying images... [ 37%] ray-observability/images/importance-of-observability.png copying images... [ 37%] ray-observability/images/application-logging.png copying images... [ 37%] ray-observability/images/register-cluster.gif copying images... [ 38%] ray-observability/images/attach-paused-task.gif copying images... [ 38%] ray-observability/images/debugger-disconnect.gif copying images... [ 38%] ray-observability/images/post-mortem.gif copying images... [ 39%] ray-observability/images/coloring-actor-log-prefixes.png copying images... [ 39%] ray-observability/images/setup-logger-application.png copying images... [ 39%] images/profile.png copying images... [ 39%] images/stack.png copying images... [ 40%] ray-observability/images/ray-oom-kills.png copying images... [ 40%] ray-observability/images/unexpected-system-level-worker-failures.png copying images... [ 40%] ray-observability/images/dmsg.png copying images... [ 41%] ray-observability/images/oom-events.png copying images... [ 41%] ray-observability/images/htop.png copying images... [ 41%] ray-observability/images/head-node-addr.png copying images... [ 41%] ray-observability/images/metrics-node-view.png copying images... [ 42%] ray-observability/images/component-memory.png copying images... [ 42%] ray-observability/images/tasks-graph.png copying images... [ 42%] ray-observability/images/memory-profiling-files.png copying images... [ 43%] ray-observability/images/download-memory-profiling-files.png copying images... [ 43%] images/flamegraph.png copying images... [ 43%] ray-observability/images/memory-profiling-dashboard-view.png copying images... [ 43%] ray-observability/images/nsight-profiler-folder.png copying images... [ 44%] ray-observability/images/ray-event-export.png copying images... [ 44%] images/map-of-ray.svg copying images... [ 44%] ray-overview/images/ray_svg_logo.svg copying images... [ 45%] images/aibrix.jpeg copying images... [ 45%] images/areal.png copying images... [ 45%] images/cosmos_curate.png copying images... [ 45%] images/daft.png copying images... [ 46%] images/data_juicer.png copying images... [ 46%] images/deltacat.png copying images... [ 46%] images/modin.png copying images... [ 47%] images/nemo.png copying images... [ 47%] images/openrlhf.png copying images... [ 47%] images/intel.png copying images... [ 47%] images/roll.jpg copying images... [ 48%] images/skyrl.png copying images... [ 48%] images/slime.jpg copying images... [ 48%] images/syftr.jpg copying images... [ 49%] images/verl.jpg copying images... [ 49%] images/vllm.png copying images... [ 49%] images/llm-stack.png copying images... [ 49%] data/images/batch_inference.png copying images... [ 50%] images/multi_model_serve.png copying images... [ 50%] images/tuning_use_case.png copying images... [ 50%] images/model_parallelism.png copying images... [ 51%] images/rllib_use_case.png copying images... [ 51%] rllib/images/checkpointing/save_and_restore.svg copying images... [ 51%] rllib/images/checkpointing/from_checkpoint.svg copying images... [ 51%] rllib/images/connector_v2/connector_generic.svg copying images... [ 52%] rllib/images/connector_v2/env_to_module_connector.svg copying images... [ 52%] rllib/images/connector_v2/learner_connector.svg copying images... [ 52%] rllib/images/connector_v2/generic_connector_pipeline.svg copying images... [ 53%] rllib/images/connector_v2/location_of_connector_pipelines_in_rllib.svg copying images... [ 53%] rllib/images/connector_v2/pipeline_batch_phases_single_agent.svg copying images... [ 53%] rllib/images/connector_v2/pipeline_batch_phases_multi_agent.svg copying images... [ 53%] rllib/images/connector_v2/pipeline_batch_phases_single_agent_w_states.svg copying images... [ 54%] rllib/images/connector_v2/env_runner_connector_pipelines.svg copying images... [ 54%] rllib/images/connector_v2/custom_pieces_in_env_to_module_pipeline.svg copying images... [ 54%] rllib/images/envs/external_env_setup_client_inference.svg copying images... [ 55%] rllib/images/rllib-index-header.svg copying images... [ 55%] rllib/images/rllib-logo.png copying images... [ 55%] rllib/images/sigils/single-agent.svg copying images... [ 55%] rllib/images/sigils/multi-agent.svg copying images... [ 56%] rllib/images/sigils/discr-actions.svg copying images... [ 56%] rllib/images/sigils/cont-actions.svg copying images... [ 56%] rllib/images/sigils/multi-gpu.svg copying images... [ 57%] rllib/images/sigils/multi-node-multi-gpu.svg copying images... [ 57%] rllib/images/rllib-new-api-stack-simple.svg copying images... [ 57%] rllib/images/rllib_key_concepts.svg copying images... [ 57%] rllib/images/envs/env_loop_concept.svg copying images... [ 58%] rllib/images/rl_modules/rl_module_overview.svg copying images... [ 58%] rllib/images/rl_modules/rl_module_in_env_runner.svg copying images... [ 58%] rllib/images/rl_modules/rl_module_in_learner.svg copying images... [ 59%] rllib/images/connector_v2/learner_connector_pipeline.svg copying images... [ 59%] rllib/images/connector_v2/custom_pieces_in_learner_pipeline.svg copying images... [ 59%] rllib/images/connector_v2/frame_stacking_connector_setup.svg copying images... [ 59%] rllib/images/metrics_logger_hierarchy.svg copying images... [ 60%] rllib/images/metrics_logger_api.svg copying images... [ 60%] rllib/images/envs/multi_agent_setup.svg copying images... [ 60%] rllib/images/envs/multi_agent_episode_simultaneous.svg copying images... [ 61%] rllib/images/envs/multi_agent_episode_turn_based.svg copying images... [ 61%] rllib/images/envs/multi_agent_episode_complex_order.svg copying images... [ 61%] rllib/images/trainer_class_overview.svg copying images... [ 61%] rllib/images/custom_metric.png copying images... [ 62%] rllib/images/rllib-exploration-api-table.svg copying images... [ 62%] rllib/images/algos/ppo-architecture.svg copying images... [ 62%] rllib/images/algos/dqn-architecture.svg copying images... [ 63%] rllib/images/algos/sac-architecture.svg copying images... [ 63%] rllib/images/algos/appo-architecture.svg copying images... [ 63%] rllib/images/algos/impala-architecture.svg copying images... [ 64%] rllib/images/impala.png copying images... [ 64%] rllib/images/algos/dreamerv3-architecture.svg copying images... [ 64%] rllib/images/dreamerv3/pong_1_2_and_4gpus.svg copying images... [ 64%] rllib/images/dreamerv3/atari100k_1_vs_4gpus.svg copying images... [ 65%] rllib/images/dreamerv3/dmc_1_vs_4gpus.svg copying images... [ 65%] rllib/images/algos/bc-architecture.svg copying images... [ 65%] rllib/images/algos/cql-architecture.svg copying images... [ 66%] rllib/images/algos/marwil-architecture.svg copying images... [ 66%] rllib/images/algos/curiosity-architecture.svg copying images... [ 66%] rllib/images/acrobot-v1.png copying images... [ 66%] rllib/images/MemoryTrackingCallbacks.png copying images... [ 67%] rllib/images/envs/single_agent_env_logo.svg copying images... [ 67%] rllib/images/envs/multi_agent_env_logo.svg copying images... [ 67%] rllib/images/envs/external_env_logo.svg copying images... [ 68%] rllib/images/envs/hierarchical_env_logo.svg copying images... [ 68%] rllib/images/envs/single_agent_setup.svg copying images... [ 68%] rllib/images/envs/env_runners.svg copying images... [ 68%] rllib/images/tensorflow.png copying images... [ 69%] rllib/images/pytorch.png copying images... [ 69%] rllib/images/offline/docs_rllib_offline_bc_episode_return_mean.svg copying images... [ 69%] rllib/images/offline/key_layers.svg copying images... [ 70%] rllib/images/offline/docs_rllib_offline_prelearner.svg copying images... [ 70%] rllib/images/scaling_axes_overview.svg copying images... [ 70%] rllib/images/episodes/usage_of_episodes.svg copying images... [ 70%] rllib/images/episodes/sa_episode.svg copying images... [ 71%] rllib/images/episodes/sa_episode_getters.svg copying images... [ 71%] rllib/images/episodes/sa_episode_non_finalized_vs_finalized.svg copying images... [ 71%] rllib/images/episodes/sa_episode_non_finalized.svg copying images... [ 72%] rllib/images/episodes/sa_episode_finalized.svg copying images... [ 72%] rllib/images/episodes/sa_episode_cut_and_lookback.svg copying images... [ 72%] rllib/images/rllib-logo.svg copying images... [ 72%] serve/images/capacity-queue-router-normal.png copying images... [ 73%] serve/images/capacity-queue-router-fault.png copying images... [ 73%] serve/advanced-guides/images/gang-single-pg.png copying images... [ 73%] serve/advanced-guides/images/gang-multi-pg.png copying images... [ 74%] serve/architecture-2.0.svg copying images... [ 74%] serve/logo.svg copying images... [ 74%] serve/llm/images/placement.png copying images... [ 74%] serve/llm/images/llmserver.png copying images... [ 75%] serve/llm/images/llmserver-ingress-rpc.png copying images... [ 75%] serve/llm/images/routing_centralized_store.png copying images... [ 75%] serve/llm/images/routing_broadcast_metrics.png copying images... [ 76%] serve/llm/images/dp.png copying images... [ 76%] serve/llm/images/dp_flow.png copying images... [ 76%] serve/llm/images/dp_pd.svg copying images... [ 76%] serve/llm/images/pd_arch.svg copying images... [ 77%] serve/llm/images/pd.svg copying images... [ 77%] serve/llm/images/direct_streaming_dashboard.png copying images... [ 77%] serve/llm/images/direct_streaming_architecture.png copying images... [ 78%] serve/llm/images/serve_llm_dashboard.png copying images... [ 78%] serve/tutorials/video-analysis/assets/gpu_utilization.png copying images... [ 78%] serve/tutorials/video-analysis/assets/presigned_vs_direct_s3.png copying images... [ 78%] serve/tutorials/video-analysis/assets/single_vs_multi_ffmpeg.png copying images... [ 79%] serve/tutorials/video-analysis/assets/chunk_video_analysis.png copying images... [ 79%] serve/tutorials/video-analysis/assets/ongoing.png copying images... [ 79%] serve/tutorials/video-analysis/assets/num_replicas.png copying images... [ 80%] serve/tutorials/video-analysis/assets/queue_len.png copying images... [ 80%] serve/tutorials/video-analysis/assets/processing_time_breakdown.png copying images... [ 80%] serve/tutorials/video-analysis/assets/throughput_analysis.png copying images... [ 80%] train/images/train-tuner.svg copying images... [ 81%] ../_build/jupyter_execute/2108b6c6dc23e650b95a57d7c0b72a3082a10fb019aa771b04ca7148f5bf09e3.png copying images... [ 81%] templates/05_dreambooth_finetuning/dreambooth/images/dreambooth_example.png copying images... [ 81%] templates/05_dreambooth_finetuning/dreambooth/images/dreambooth_training.png copying images... [ 82%] ../_build/jupyter_execute/ace6066cf2c3c344a5997b5cb8ff8951e133f98ac8446eb939244992aa663135.png copying images... [ 82%] images/accelerate_logo.png copying images... [ 82%] images/deepspeed_logo.svg copying images... [ 82%] images/tf_logo.png copying images... [ 83%] images/lightgbm_logo.png copying images... [ 83%] images/horovod.png copying images... [ 83%] train/images/overview.png copying images... [ 84%] train/images/checkpoint_metrics_lifecycle.png copying images... [ 84%] train/images/checkpoint_lifecycle.png copying images... [ 84%] train/images/persistent_storage_checkpoint.png copying images... [ 84%] train/images/sync_vs_async_checkpointing.png copying images... [ 85%] train/images/train_ingest.png copying images... [ 85%] train/images/fault_tolerance/worker_failure_start.png copying images... [ 85%] train/images/fault_tolerance/worker_node_failure.png copying images... [ 86%] train/images/fault_tolerance/worker_node_replacement.png copying images... [ 86%] train/images/fault_tolerance/worker_group_recovery.png copying images... [ 86%] train/images/fault_tolerance/cluster_failure_start.png copying images... [ 86%] train/images/fault_tolerance/head_node_failure.png copying images... [ 87%] train/images/fault_tolerance/cluster_failure.png copying images... [ 87%] train/images/fault_tolerance/cluster_recovery.png copying images... [ 87%] train/images/hyperparameter_optimization/train_without_tune.png copying images... [ 88%] train/images/hyperparameter_optimization/train_tune_interop.png copying images... [ 88%] tune/images/ray-tune-viskit.png copying images... [ 88%] images/hyperband_bracket.png copying images... [ 89%] images/hyperband_eta.png copying images... [ 89%] images/hyperband_allocation.png copying images... [ 89%] data/examples/images/batch-training.svg copying images... [ 89%] tune/examples/includes/images/pbt_function_results.png copying images... [ 90%] images/tune_advanced_paper1.png copying images... [ 90%] ../_build/jupyter_execute/ce1c0fd33903bfaf581ee2245c0dbb68d5c7079ad64a4f35dd0e1278b34e1ea7.png copying images... [ 90%] ../_build/jupyter_execute/60e0d8726f400ee9d95b197738260f8989346ef4fe60d815b275d3d0b3c4b1f9.png copying images... [ 91%] ../_build/jupyter_execute/6eeb09c68eafec5e2618a6c9485d8d03c0980af88139b9c100a0640f21c21def.png copying images... [ 91%] ../_build/jupyter_execute/dea1643da130b41b1e6280052aa99f0df3a03448fa7d8412a3c8e0d7a3091ae9.png copying images... [ 91%] images/hugging.png copying images... [ 91%] ../_build/jupyter_execute/c59f1361baaaeb15a318864bea3939459e61fb1f46e6bc9f08f247f6ed156189.png copying images... [ 92%] tune/examples/pbt_visualization/pbt.gif copying images... [ 92%] ../_build/jupyter_execute/45a657ab26016ddca7a6ed8618b3d7238913bccbf302166816c2b35c94c66d70.png copying images... [ 92%] tune/examples/pbt_visualization/figure_from_paper.png copying images... [ 93%] ../_build/jupyter_execute/d3b32145dc5ba2b87e9f1cc1ec6b6cd4abd1b6346be7ee27320d37db30c2a192.png copying images... [ 93%] tune/examples/pbt_visualization/pbt4.gif copying images... [ 93%] images/aim_logo_full.png copying images... [ 93%] images/aim_example_metrics_page.png copying images... [ 94%] images/comet_logo_full.png copying images... [ 94%] images/mlflow.png copying images... [ 94%] images/pytorch_logo.png copying images... [ 95%] images/pytorch_lightning_full.png copying images... [ 95%] images/wandb_logo_full.png copying images... [ 95%] images/xgboost_logo.png copying images... [ 95%] images/tune-xgboost-ensemble.svg copying images... [ 96%] images/tune-xgboost-depth.svg copying images... [ 96%] images/tune-xgboost-weight.svg copying images... [ 96%] ../_build/jupyter_execute/9db28a3d88c4f1c01592e695c2ac84d9bfcc889820774806e3f0210118cafa05.png copying images... [ 97%] ../_build/jupyter_execute/82e684fc9512d6186a43174eba0f92d64e36b9b625da83ec39f0709d3b7219a8.png copying images... [ 97%] ../_build/jupyter_execute/55afb00d1e20d980ce404aaae70714939e8f5bacdb431046bc59a42c4455d5e6.png copying images... [ 97%] images/tf_keras_logo.jpeg copying images... [ 97%] images/hyper-model-parameters.png copying images... [ 98%] images/hyper-network-params.png copying images... [ 98%] images/tune-df-plot.png copying images... [ 98%] tune/images/tune_overview.png copying images... [ 99%] tune/images/tune_flow.png copying images... [ 99%] images/tune-upload.png copying images... [ 99%] images/tune-arch.png copying images... [ 99%] images/tune-trial-runner-flow-horizontal.png copying images... [100%] tune/images/ray-tune-tensorboard.png copying images... [100%] images/tune-hparams.png dumping object inventory... done sphinx-sitemap: sitemap.xml was generated for URL https://docs.ray.io/en/latest/ in /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/_build/html/sitemap.xml Final clean of collections ... Found 3492 additional files not in toctree sphinx-llms-txt: Created /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/_build/html/llms-full.txt with 604 sources and 103680 lines sphinx-llms-txt: created /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc/_build/html/llms.txt build succeeded. The HTML pages are in _build/html. Publishing _build/html -> /home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/_readthedocs//html make: Leaving directory '/home/docs/checkouts/readthedocs.org/user_builds/anyscale-ray/checkouts/64277/doc'