Update sidebar navigation: Agentic AI → Agentic, Gateways → Routers#510
Update sidebar navigation: Agentic AI → Agentic, Gateways → Routers#510
Conversation
Align docs with Console sidebar restructure (cloudv2#24748). Navigation path is now Agentic > AI Gateway > Routers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
✅ Deploy Preview for rp-cloud ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
📝 WalkthroughWalkthroughThis pull request updates documentation navigation paths across multiple AI Gateway and AI Hub configuration guides. The changes reflect a restructured UI hierarchy, replacing references to "Agentic AI → Providers/Models/Gateways" with "Agentic → AI Gateway → Providers/Models/Routers", and updating standalone "AI Gateway → Gateways" paths to "Agentic → AI Gateway → Routers". The updates are applied consistently across setup guides, quickstart instructions, configuration documentation, and observability guides. Minor content additions include model listings and API endpoint examples. Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Try Coding Plans. Let us write the prompt for your AI agent so you can ship faster (with fewer bugs). Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (3)
modules/ai-agents/partials/ai-hub-mode-indicator.adoc (1)
18-43:⚠️ Potential issue | 🟡 MinorRemove JSON comment syntax from code example.
Line 35 contains
// or "custom"as an inline comment within the JSON code block. JSON doesn't support comments—use a note outside the code block instead to explain that the mode field can be either"ai_hub"or"custom".The API endpoint format and response structure are consistent with other documented examples in the codebase.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@modules/ai-agents/partials/ai-hub-mode-indicator.adoc` around lines 18 - 43, Remove the inline JavaScript-style comment from the JSON response example: delete the `// or "custom"` comment inside the JSON block and instead add a short sentence or note below the JSON describing that the "mode" field can be either "ai_hub" or "custom"; update the ai-hub example around the JSON response (the JSON block containing "id", "name", "mode", "endpoint", "workspace_id", "created_at") so the JSON remains valid and the explanatory text about the "mode" values appears outside the code block.modules/ai-agents/partials/integrations/cline-admin.adoc (1)
85-90:⚠️ Potential issue | 🔴 CriticalUpdate model identifiers to current valid versions.
The model names listed are outdated and partially incorrect:
anthropic/claude-opus-4.6-5→ Should beanthropic/claude-opus-4-6(current as of Feb 2026)anthropic/claude-sonnet-4.5→ Should beanthropic/claude-sonnet-4-6(current version)openai/o1-mini→ Deprecated; recommendopenai/o3-miniinsteadopenai/gpt-5.2→ Correct (no change needed)These model identifiers must match the actual available models in the catalogs or Cline clients will fail to access them.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@modules/ai-agents/partials/integrations/cline-admin.adoc` around lines 85 - 90, Update the outdated model identifiers listed for the Cline integration: replace "anthropic/claude-opus-4.6-5" with "anthropic/claude-opus-4-6", replace "anthropic/claude-sonnet-4.5" with "anthropic/claude-sonnet-4-6", and replace the deprecated "openai/o1-mini" with "openai/o3-mini"; leave "openai/gpt-5.2" unchanged so the Cline client and model catalog match actual available model names.modules/ai-agents/partials/integrations/claude-code-admin.adoc (1)
74-79:⚠️ Potential issue | 🟠 MajorUpdate model identifiers to use correct API format and current versions.
The listed models have several issues:
anthropic/claude-opus-4.6-5— Invalid identifier format. Useanthropic/claude-opus-4-6(Anthropic uses hyphens, not dots with trailing numbers).anthropic/claude-sonnet-4.5— Should useanthropic/claude-sonnet-4-5(hyphens, not dots). Consider updating to the newerclaude-sonnet-4-6if available for your use case.openai/gpt-5.2— No such model exists. Useopenai/gpt-5oropenai/gpt-5-1instead.openai/o1-mini— Valid but deprecated; OpenAI recommendso4-minias the replacement.🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@modules/ai-agents/partials/integrations/claude-code-admin.adoc` around lines 74 - 79, Update the listed model identifiers to the correct API format and current versions: replace `anthropic/claude-opus-4.6-5` with `anthropic/claude-opus-4-6`, change `anthropic/claude-sonnet-4.5` to `anthropic/claude-sonnet-4-5` (or to `anthropic/claude-sonnet-4-6` if you want the newer build), swap `openai/gpt-5.2` for a valid OpenAI model like `openai/gpt-5` or `openai/gpt-5-1`, and replace the deprecated `openai/o1-mini` with the recommended `openai/o4-mini`; update these identifiers in the document where `claude-opus`, `claude-sonnet`, `gpt-5`, and `o1-mini` appear.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@modules/ai-agents/pages/ai-gateway/cel-routing-cookbook.adoc`:
- Line 713: Update the navigation text to use the full path for consistency:
replace the line that currently reads "Navigate to *Routers* → *Routing Rules*"
with "Navigate to *Agentic* → *AI Gateway* → *Routers* → *Routing Rules*";
ensure the change is made in the cel-routing-cookbook.adoc content where the
navigation step is defined so it matches the new pattern used elsewhere.
---
Outside diff comments:
In `@modules/ai-agents/partials/ai-hub-mode-indicator.adoc`:
- Around line 18-43: Remove the inline JavaScript-style comment from the JSON
response example: delete the `// or "custom"` comment inside the JSON block and
instead add a short sentence or note below the JSON describing that the "mode"
field can be either "ai_hub" or "custom"; update the ai-hub example around the
JSON response (the JSON block containing "id", "name", "mode", "endpoint",
"workspace_id", "created_at") so the JSON remains valid and the explanatory text
about the "mode" values appears outside the code block.
In `@modules/ai-agents/partials/integrations/claude-code-admin.adoc`:
- Around line 74-79: Update the listed model identifiers to the correct API
format and current versions: replace `anthropic/claude-opus-4.6-5` with
`anthropic/claude-opus-4-6`, change `anthropic/claude-sonnet-4.5` to
`anthropic/claude-sonnet-4-5` (or to `anthropic/claude-sonnet-4-6` if you want
the newer build), swap `openai/gpt-5.2` for a valid OpenAI model like
`openai/gpt-5` or `openai/gpt-5-1`, and replace the deprecated `openai/o1-mini`
with the recommended `openai/o4-mini`; update these identifiers in the document
where `claude-opus`, `claude-sonnet`, `gpt-5`, and `o1-mini` appear.
In `@modules/ai-agents/partials/integrations/cline-admin.adoc`:
- Around line 85-90: Update the outdated model identifiers listed for the Cline
integration: replace "anthropic/claude-opus-4.6-5" with
"anthropic/claude-opus-4-6", replace "anthropic/claude-sonnet-4.5" with
"anthropic/claude-sonnet-4-6", and replace the deprecated "openai/o1-mini" with
"openai/o3-mini"; leave "openai/gpt-5.2" unchanged so the Cline client and model
catalog match actual available model names.
ℹ️ Review info
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Disabled knowledge base sources:
- Jira integration is disabled
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (16)
modules/ai-agents/pages/ai-gateway/admin/setup-guide.adocmodules/ai-agents/pages/ai-gateway/builders/discover-gateways.adocmodules/ai-agents/pages/ai-gateway/cel-routing-cookbook.adocmodules/ai-agents/pages/ai-gateway/gateway-quickstart.adocmodules/ai-agents/pages/ai-gateway/mcp-aggregation-guide.adocmodules/ai-agents/partials/ai-hub-mode-indicator.adocmodules/ai-agents/partials/ai-hub/configure-ai-hub.adocmodules/ai-agents/partials/ai-hub/use-ai-hub-gateway.adocmodules/ai-agents/partials/integrations/claude-code-admin.adocmodules/ai-agents/partials/integrations/cline-admin.adocmodules/ai-agents/partials/integrations/continue-admin.adocmodules/ai-agents/partials/integrations/cursor-admin.adocmodules/ai-agents/partials/integrations/github-copilot-admin.adocmodules/ai-agents/partials/migration-guide.adocmodules/ai-agents/partials/observability-logs.adocmodules/ai-agents/partials/observability-metrics.adoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The routers name is currently under discussion, decision due today. |
|
We settled on "Gateways" rather than "Routers" in the end. |
The UI still says "Gateways", not "Routers", so this reverts that part of the sidebar navigation rename across all 16 affected files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Thanks @weeco, I've updated. Please review this again for any other changes! |
|
|
||
| 1. Navigate to analytics dashboard: | ||
| * In the sidebar, navigate to *Agentic AI > Gateways > {gateway-name}*, then select the *Analytics* tab. | ||
| * In the sidebar, navigate to *Agentic > AI Gateway > Gateways > {gateway-name}*, then select the *Analytics* tab. |
There was a problem hiding this comment.
There was a problem hiding this comment.
fixed all instances
Apply individual bold to each menu item (*Agentic* > *AI Gateway* > *Gateways*) instead of wrapping the entire path in a single bold block. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Description
Align docs with Console sidebar restructure (cloudv2#24748). Navigation path is now Agentic > AI Gateway > Gateways.
Page previews
quickstart
Checks