Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add License page to MkDocs navigation
Description
Documentation did not expose licensing or legal information in the site nav, so users had to open the GitHub repo to find LICENSE, third-party notices, or contribution/license notes.
This change adds a License item under NeMo Retriever Extraction that opens a dedicated page covering:
Apache License 2.0 — What applies to this repo’s source and docs, with links to LICENSE (and raw text) on GitHub.
Third-party licenses — Link to THIRD_PARTY_LICENSES.md plus inlined content from that file (via pymdownx snippets, from line 3 onward to avoid a duplicate top-level heading) so model licenses (e.g. Llama 3.2) stay aligned with the repo.
NVIDIA NIM container images — Clarifies that NIM images are under separate terms and points to the NVIDIA Software License Agreement, with a reminder to follow the terms provided at download time.
Contributing — Link to root CONTRIBUTING.md for contribution expectations and license compatibility.
MkDocs config: pymdownx.snippets base_path is set to ['.', '..'] so snippets can resolve THIRD_PARTY_LICENSES.md at the repository root while preserving existing snippet behavior under docs/.
Impact: Documentation-only; no runtime behavior change. Improves discoverability of legal/licensing material from the published docs site.