Conversation
… catalog - Fix gpt-3.5-turbo-instruct to gpt-4o-mini - Fix typos: idenfier to identifier, tourch to torch - Fix Patronus AI URL missing https://
Contributor
Greptile SummaryDocumentation-only PR that fixes three items in
Issue: The PR description mentions fixing the Patronus AI URL to include
|
| Filename | Overview |
|---|---|
| docs/configure-rails/guardrail-catalog.md | Three documentation fixes (model name, two typos) are correct, but the Patronus AI URL fix mentioned in the PR description is missing from the actual changes. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["guardrail-catalog.md"] --> B["Fix 1: Model Reference\ngpt-3.5-turbo-instruct → gpt-4o-mini\n(Line 458)"]
A --> C["Fix 2: Typo\nidenfier → identifier\n(Line 474)"]
A --> D["Fix 3: Typo\ntourch → torch\n(Line 873)"]
A --> E["Missing Fix: Patronus URL\nwww.patronus.ai → https://www.patronus.ai\n(Line 1073)"]
style E stroke:#ff6666,stroke-width:2px
Last reviewed commit: cadcb98
Contributor
Documentation preview |
Contributor
Additional Comments (1)
The PR description mentions fixing the Patronus AI URL to include Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/configure-rails/guardrail-catalog.md
Line: 1073
Comment:
**Missing Patronus AI URL fix**
The PR description mentions fixing the Patronus AI URL to include `https://`, but this change is not present in the diff. Line 1073 still has `[Patronus AI](www.patronus.ai)` — the link will not work correctly in most Markdown renderers without the `https://` protocol prefix.
```suggestion
The NeMo Guardrails library supports hallucination detection in RAG systems using [Patronus AI](https://www.patronus.ai)'s Lynx model. The model is hosted on Hugging Face and comes in both a 70B parameters (see [here](https://huggingface.co/PatronusAI/Patronus-Lynx-70B-Instruct)) and 8B parameters (see [here](https://huggingface.co/PatronusAI/Patronus-Lynx-8B-Instruct)) variant.
```
How can I resolve this? If you propose a fix, please make it concise. |
miyoungc
approved these changes
Feb 23, 2026
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.
Description