Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Comprehensive reference for all NeMo RL modules, classes, functions, and methods

about/overview
about/performance-summary
about/model-support

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify the referenced markdown file exists
test -f docs/about/model-support.md && echo "✓ File exists" || echo "✗ File not found"

# Check for potential naming inconsistencies
find docs/about -name "*model*" -o -name "*support*" 2>/dev/null | head -20

# List all files in docs/about directory for context
echo "=== All files in docs/about ==="
ls -la docs/about/ 2>/dev/null || echo "Directory not found"

Repository: NVIDIA-NeMo/RL

Length of output: 854


🏁 Script executed:

# Check the structure of docs/index.md around line 174 to verify the toctree entry
head -n 185 docs/index.md | tail -n 20

Repository: NVIDIA-NeMo/RL

Length of output: 315


Create the missing markdown file docs/about/model-support.md before merging.

The toctree entry about/model-support references a file that does not exist in the repository. The file docs/about/model-support.md must be created to complete this documentation update and prevent build failures.

🤖 Prompt for AI Agents
In docs/index.md around line 174 the toctree references "about/model-support"
but the file docs/about/model-support.md is missing; create
docs/about/model-support.md (matching the toctree path) and add the appropriate
markdown content or a placeholder with a title (e.g., "# Model Support") and any
required front-matter or section headings, commit the new file, and ensure the
path and filename match the toctree entry exactly so the docs build succeeds.

about/features
about/backends
about/quick-start
Expand Down
Loading