Skip to content

Add AWS Bedrock LLM provider guide - #401

Open
Aakashwije wants to merge 5 commits into
wso2:mainfrom
Aakashwije:bedrock-guaide
Open

Add AWS Bedrock LLM provider guide#401
Aakashwije wants to merge 5 commits into
wso2:mainfrom
Aakashwije:bedrock-guaide

Conversation

@Aakashwije

@Aakashwije Aakashwije commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

Purpose

Add documentation for configuring AWS Bedrock as an LLM Provider in API Platform AI Gateway.

This addresses the need for new users to configure an AWS Bedrock provider end to end, including Bedrock bearer API keys and AWS Signature Version 4 (SigV4) authentication.

Resolves N/A

Checklist

  • Verified that llms.txt is updated for AI readiness content.
  • Ensured meaningful alt text for images and that image information is also available as text.
  • Added or updated frontmatter for the respective pages.

Goals

Introduce an AWS Bedrock LLM Provider guide that helps users:

  • Choose between Bedrock bearer API key authentication and SigV4 authentication.
  • Configure the regional Bedrock Runtime endpoint.
  • Store credentials securely as gateway secrets.
  • Configure SigV4 using IAM access keys, the default credential chain, IRSA, or STS AssumeRole.
  • Invoke Bedrock through the AI Gateway using a gateway consumer API key.
  • Find the relevant guide under the LLM Proxies section.

Approach

Added a new guide at:

en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md

Updated the AI Gateway overview pages to link to the new guide:

  • en/docs/ai-gateway/next/overview.md
  • en/docs/ai-gateway/next/README.md

Updated the documentation navigation in en/mkdocs.yml:

  • Replaced the AI and MCP grouping with separate LLM Proxies and MCP Proxies sections under Guides.
  • Added the AWS Bedrock guide under Guides > LLM Proxies.
  • Kept MCP-related guides under Guides > MCP Proxies.
  • Removed the duplicate Bedrock entry from the AI Gateway LLM Proxy navigation.

Updated en/docs/ai-gateway/next/llm-proxy/llm-templates.md with the latest provider template structures, including:

  • gateway.api-platform.wso2.com/v1 API versions.
  • groupId, managedBy, and template version fields.
  • Updated /responses resource mappings.
  • Updated Azure OpenAI token paths.
  • Updated AWS Bedrock model extraction patterns.
  • Updated Management API examples to use /api/management/v1.
  • A direct link to the AWS Bedrock configuration guide.

The guide includes copy-paste-ready curl and YAML examples, Region-neutral configuration using AWS_REGION, separate bearer and SigV4 authentication sections, IAM policy guidance, verification steps, and troubleshooting notes.

Updated Guides navigation

Screenshot 2026-08-04 at 15 04 33

User stories

As a platform administrator, I want to configure AWS Bedrock as an LLM Provider so that applications can invoke Bedrock models through API Platform AI Gateway.

As a platform administrator, I want separate instructions for bearer authentication and SigV4 authentication so that I can choose the authentication method that matches my environment.

As a gateway operator, I want examples for IAM access keys, the default credential chain, IRSA, and STS AssumeRole so that I can configure Bedrock securely across local, EKS, and cross-account deployments.

As a documentation user, I want AI and MCP guides grouped separately so that I can quickly find guides relevant to LLM proxies or MCP proxies.

Release note

Added documentation for configuring AWS Bedrock as an LLM Provider in API Platform AI Gateway, including Bedrock bearer API key and AWS SigV4 authentication.

Documentation

This PR adds the following documentation page:

en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md

It also updates the LLM Provider Templates reference and AI Gateway navigation.

Training

N/A. No training content changes are included in this PR.

Certification

N/A. This documentation update does not introduce certification exam impact.

Marketing

N/A. No marketing content changes are included in this PR.

Automation tests

  • Unit tests
    N/A. Documentation-only change.

  • Integration tests
    N/A. Documentation-only change.

Security checks

Samples

The guide includes sample LLM Provider configurations for:

  • Bedrock bearer API key authentication.
  • SigV4 with IAM access keys.
  • SigV4 with the default credential chain.
  • SigV4 with IRSA.
  • SigV4 with STS AssumeRole.

It also includes sample curl commands for creating gateway secrets, deploying the provider, creating a gateway consumer API key, and invoking the Bedrock Converse operation through the gateway.

The Provider Templates documentation includes updated YAML structures for:

  • OpenAI.
  • Azure OpenAI.
  • Anthropic.
  • Gemini.
  • MistralAI.
  • AWS Bedrock.
  • Azure AI Foundry.

Related PRs

N/A

Migrations (if applicable)

N/A. No migration impact.

Test environment

Documentation build was tested locally with MkDocs.

Environment:

  • macOS
  • Python virtual environment from the repository
  • MkDocs using en/mkdocs.yml

Validation commands:

./.venv/bin/mkdocs build -f en/mkdocs.yml -d /private/tmp/docs-api-platform-bedrock-build
git diff --check

Both validations passed successfully.

Learning

Reviewed the existing LLM Provider documentation patterns and aligned the AWS Bedrock guide with the existing provider configuration structure.

Referenced the current AWS Bedrock authentication behavior, WSO2 Gateway Controller AWS authentication policy behavior, and the latest provider template definitions from the official wso2/api-platform repository.

@coderabbitai

coderabbitai Bot commented Aug 4, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The PR adds AWS Bedrock provider configuration guidance, updates LLM provider templates to API v1, and reorganizes AI Gateway documentation navigation. The guide covers bearer API keys, AWS SigV4 authentication, IAM options, deployment, verification, troubleshooting, and security.

Changes

AI Gateway documentation

Layer / File(s) Summary
Provider template API v1 updates
en/docs/ai-gateway/next/llm-proxy/llm-templates.md, en/docs/ai-gateway/1.2.0/llm-proxy/llm-templates.md
Updates template schemas, examples, mappings, metadata, extraction locations, provider context, and management commands to API v1.
AWS Bedrock provider configuration
en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md, en/docs/ai-gateway/1.2.0/llm-proxy/configure-aws-bedrock-provider.md
Documents Bedrock endpoints, bearer API keys, AWS SigV4 authentication, IAM credential sources, STS AssumeRole, deployment, verification, Converse requests, troubleshooting, and security recommendations.
Documentation navigation and entry points
en/docs/ai-gateway/*/README.md, en/docs/ai-gateway/*/overview.md, en/mkdocs.yml
Links to the AWS Bedrock guide, adds AI Gateway 1.2.0 navigation, and separates LLM Proxy and MCP Proxy guide groups.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Suggested reviewers: krishanx92

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely identifies the primary change: adding an AWS Bedrock LLM provider guide.
Description check ✅ Passed The description covers the template sections, explains the changes, and records validation results, security checks, and documentation impact.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 10

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md`:
- Around line 47-53: Precede the authentication methods table in the Bedrock
provider configuration documentation with a brief introductory sentence
directing readers to use the table to choose an authentication method.
- Line 2: Update the title and all headings in configure-aws-bedrock-provider.md
to use sentence case: lowercase words such as “Provider” in the title, change
“Before You Begin” to “Before you begin,” apply the same treatment to every
remaining heading, and capitalize only the first word after colons.
- Line 296: Update the irsa guidance in the Bedrock provider documentation to
remove the difficulty modifier “simplest option,” replacing it with a direct
description of when to use this mode, such as when the gateway workload already
has the required IAM role. Preserve the existing EKS, OIDC, service account, and
webhook requirements.
- Around line 104-105: Add blank lines immediately after every {% raw %} tag and
immediately before every {% endraw %} tag surrounding fenced code blocks in the
document, including the referenced additional locations, so the markdownlint
MD031 violations are resolved.
- Around line 2-3: Expand LLM in the page title to “Large Language Model” and
define EC2, ECS, EKS, IRSA, STS, OIDC, and ARN at their first occurrences in the
authentication table and later sections. Preserve the existing acronym usage
consistently after each initial definition, including the referenced
authentication and configuration sections.
- Around line 268-274: Add the missing POST /secrets command for creating
bedrock-session-token in the temporary AWS credentials setup before the
awsSessionToken YAML parameter, keeping the existing bedrock-access-key-id and
bedrock-secret-access-key creation flow unchanged.
- Line 23: Update the regional guidance in the Bedrock endpoint documentation to
avoid applying the same-Region requirement to inference profiles. Limit the
existing rule to base models, or distinguish base models from inference profiles
and document that profiles may route across destination Regions while SigV4
region matches the endpoint; explain source and destination Regions separately
for profiles.
- Around line 403-422: Remove the -k option from the Bedrock curl example. Keep
the request configured to use certificate validation, and direct users to a
trusted CA or --cacert for local self-signed certificates; place any insecure
local-development workaround in a separate local-development section if needed.
- Around line 219-230: Update the SigV4 deployment here-document in the AWS
Bedrock provider example to use an expanding delimiter so `${AWS_REGION}` is
substituted in the upstream URL and region configuration. Preserve the existing
YAML content and deployment command.

In `@en/docs/ai-gateway/next/README.md`:
- Line 52: Use “AWS Bedrock” consistently in both affected documentation
entries: update en/docs/ai-gateway/next/README.md lines 52-52 and
en/docs/ai-gateway/next/overview.md lines 52-52 by replacing “Amazon Bedrock” in
the prose while preserving the existing link and authentication details.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 392c440b-0acd-4e20-b15c-73b20ba96066

📥 Commits

Reviewing files that changed from the base of the PR and between 95f418c and b728f95.

📒 Files selected for processing (4)
  • en/docs/ai-gateway/next/README.md
  • en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
  • en/docs/ai-gateway/next/overview.md
  • en/mkdocs.yml

Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/README.md Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 4

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md`:
- Line 448: Update the TLS command’s --cacert example in the AWS Bedrock
provider documentation to define the certificate path in a shell variable and
pass that variable as a quoted argument, avoiding angle-bracket placeholder
syntax that shells interpret as redirection.
- Line 384: Update the scoped AWS Bedrock policy guidance near the production
Resource instruction to require both each inference profile ARN and the
corresponding foundation-model ARN in every relevant Region. Preserve the
existing wildcard replacement guidance and link, while explicitly noting that
both destinations must be authorized.

In `@en/docs/ai-gateway/next/llm-proxy/llm-templates.md`:
- Line 480: Insert a brief introductory sentence between the “Template Field
Reference” heading and its field reference table, explicitly explaining that the
table is used to configure an LlmProviderTemplate resource.

In `@en/mkdocs.yml`:
- Line 833: Update the navigation label in the mkdocs configuration to use
“Configure an AWS Bedrock LLM Provider,” matching the README and overview link
text while keeping the existing guide path unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 7bac6451-178e-49e8-9c04-cf0e6d1b14b1

📥 Commits

Reviewing files that changed from the base of the PR and between b728f95 and 98abf1b.

📒 Files selected for processing (5)
  • en/docs/ai-gateway/next/README.md
  • en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
  • en/docs/ai-gateway/next/llm-proxy/llm-templates.md
  • en/docs/ai-gateway/next/overview.md
  • en/mkdocs.yml

Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md Outdated
Comment thread en/docs/ai-gateway/next/llm-proxy/llm-templates.md
Comment thread en/mkdocs.yml Outdated
coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 4, 2026
@Krishanx92

Copy link
Copy Markdown
Contributor

Any reason that we are not yet merge this? @Aakashwije
Now we created 1.2.0 folder need to add it to there as well

@Krishanx92 Krishanx92 left a comment

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.

Add this to 1.2.0 doc space

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (9)
en/docs/ai-gateway/1.2.0/overview.md (2)

30-30: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use a complete introduction for the template list.

Change this line to The following templates are available out of the box:.

As per coding guidelines and path instructions, use complete, direct sentences and introduce lists clearly.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/overview.md` at line 30, Update the introductory
sentence before the template list to “The following templates are available out
of the box:” so it is complete, direct, and clearly introduces the list.

Sources: Coding guidelines, Path instructions


101-105: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use a descriptive heading instead of bold emphasis.

Replace **How it works:** with a heading, such as ## How it works. Keep the numbered procedure below it.

As per coding guidelines and path instructions, use descriptive headings and reserve bold text for UI elements.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/overview.md` around lines 101 - 105, Replace the
bold “How it works:” label with a descriptive Markdown heading such as “## How
it works” in the overview documentation, while preserving the numbered procedure
beneath it unchanged.

Sources: Coding guidelines, Path instructions

en/docs/ai-gateway/1.2.0/README.md (5)

30-30: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use a complete introduction for the template list.

Change this line to The following templates are available out of the box:.

As per coding guidelines and path instructions, use complete, direct sentences and introduce lists clearly.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/README.md` at line 30, Update the introductory
sentence immediately before the template list to use the complete wording “The
following templates are available out of the box:”, preserving the list that
follows.

Sources: Coding guidelines, Path instructions


95-99: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use a descriptive heading instead of bold emphasis.

Replace **How it works:** with a heading, such as ## How it works. Keep the numbered procedure below it.

As per coding guidelines and path instructions, use descriptive headings and reserve bold text for UI elements.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/README.md` around lines 95 - 99, Replace the bold
“How it works” label with a descriptive Markdown heading, such as “## How it
works,” while preserving the numbered procedure beneath it.

Sources: Coding guidelines, Path instructions


70-76: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Introduce each table with meaningful text.

  • en/docs/ai-gateway/1.2.0/README.md#L70-L76: Add a sentence before the default-ports table that explains its purpose.
  • en/docs/ai-gateway/1.2.0/README.md#L101-L109: Add a sentence before the documentation table that explains its purpose.
  • en/docs/ai-gateway/1.2.0/overview.md#L75-L82: Add a sentence before the default-ports table that explains its purpose.
  • en/docs/ai-gateway/1.2.0/overview.md#L115-L125: Add a sentence before the documentation table that explains its purpose.

As per coding guidelines and path instructions, introduce every table with meaningful text before it.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/README.md` around lines 70 - 76, Add a meaningful
introductory sentence immediately before each identified table explaining its
purpose: en/docs/ai-gateway/1.2.0/README.md lines 70-76 and 101-109, and
en/docs/ai-gateway/1.2.0/overview.md lines 75-82 and 115-125. Ensure all four
tables are introduced without changing their contents.

Sources: Coding guidelines, Path instructions


19-24: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use sentence case for page headings.

  • en/docs/ai-gateway/1.2.0/README.md#L19-L24: Change headings such as Quick Start and Key Concepts to sentence case.
  • en/docs/ai-gateway/1.2.0/overview.md#L19-L24: Change headings such as Quick Start and Key Concepts to sentence case.

As per coding guidelines and path instructions, headings in en/docs/ Markdown files must use sentence case.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/README.md` around lines 19 - 24, Update the headings
in en/docs/ai-gateway/1.2.0/README.md at lines 19-24 and
en/docs/ai-gateway/1.2.0/overview.md at lines 19-24, including “Quick Start” and
“Key Concepts,” to sentence case while preserving their meaning and structure.

Sources: Coding guidelines, Path instructions


80-93: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Specify a language for each fenced diagram.

  • en/docs/ai-gateway/1.2.0/README.md#L80-L93: Change the opening fence to ````text` so Markdown tooling can classify the diagram.
  • en/docs/ai-gateway/1.2.0/overview.md#L86-L99: Change the opening fence to ````text` so Markdown tooling can classify the diagram.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/README.md` around lines 80 - 93, Update the opening
fence for the diagram in en/docs/ai-gateway/1.2.0/README.md lines 80-93 to use
the text language; make the same opening-fence change in
en/docs/ai-gateway/1.2.0/overview.md lines 86-99, leaving the diagram contents
unchanged.

Source: Linters/SAST tools

en/docs/ai-gateway/next/overview.md (1)

73-73: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Split the streaming guidance into shorter sentences.

This paragraph contains several independent behaviors. State the LLM behavior and the MCP behavior in separate sentences or list items.

As per coding guidelines and path instructions, use simple sentences with fewer than 26 words.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/next/overview.md` at line 73, Rewrite the streaming
paragraph around the LLM providers, LLM proxies, and MCP proxies behaviors into
separate short sentences or list items. Keep the existing details and link,
ensuring every sentence has fewer than 26 words.

Sources: Coding guidelines, Path instructions

en/docs/ai-gateway/1.2.0/llm-proxy/llm-templates.md (1)

15-17: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use sentence case for headings.

Change headings such as LLM Provider Templates, Out-of-the-Box Supported Templates, Template Structure, and Metadata Extraction Patterns to sentence case.

As per coding guidelines and path instructions, headings in en/docs/ Markdown files must use sentence case.

Also applies to: 25-25, 41-41, 76-76

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@en/docs/ai-gateway/1.2.0/llm-proxy/llm-templates.md` around lines 15 - 17,
Convert the Markdown headings in this document to sentence case, including the
visible headings “LLM Provider Templates,” “Out-of-the-Box Supported Templates,”
“Template Structure,” and “Metadata Extraction Patterns,” while preserving their
wording and heading levels.

Sources: Coding guidelines, Path instructions

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@en/docs/ai-gateway/1.2.0/llm-proxy/llm-templates.md`:
- Around line 15-17: Convert the Markdown headings in this document to sentence
case, including the visible headings “LLM Provider Templates,” “Out-of-the-Box
Supported Templates,” “Template Structure,” and “Metadata Extraction Patterns,”
while preserving their wording and heading levels.

In `@en/docs/ai-gateway/1.2.0/overview.md`:
- Line 30: Update the introductory sentence before the template list to “The
following templates are available out of the box:” so it is complete, direct,
and clearly introduces the list.
- Around line 101-105: Replace the bold “How it works:” label with a descriptive
Markdown heading such as “## How it works” in the overview documentation, while
preserving the numbered procedure beneath it unchanged.

In `@en/docs/ai-gateway/1.2.0/README.md`:
- Line 30: Update the introductory sentence immediately before the template list
to use the complete wording “The following templates are available out of the
box:”, preserving the list that follows.
- Around line 95-99: Replace the bold “How it works” label with a descriptive
Markdown heading, such as “## How it works,” while preserving the numbered
procedure beneath it.
- Around line 70-76: Add a meaningful introductory sentence immediately before
each identified table explaining its purpose: en/docs/ai-gateway/1.2.0/README.md
lines 70-76 and 101-109, and en/docs/ai-gateway/1.2.0/overview.md lines 75-82
and 115-125. Ensure all four tables are introduced without changing their
contents.
- Around line 19-24: Update the headings in en/docs/ai-gateway/1.2.0/README.md
at lines 19-24 and en/docs/ai-gateway/1.2.0/overview.md at lines 19-24,
including “Quick Start” and “Key Concepts,” to sentence case while preserving
their meaning and structure.
- Around line 80-93: Update the opening fence for the diagram in
en/docs/ai-gateway/1.2.0/README.md lines 80-93 to use the text language; make
the same opening-fence change in en/docs/ai-gateway/1.2.0/overview.md lines
86-99, leaving the diagram contents unchanged.

In `@en/docs/ai-gateway/next/overview.md`:
- Line 73: Rewrite the streaming paragraph around the LLM providers, LLM
proxies, and MCP proxies behaviors into separate short sentences or list items.
Keep the existing details and link, ensuring every sentence has fewer than 26
words.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: b69098e7-4c2f-489a-acbb-de4e87ca355d

📥 Commits

Reviewing files that changed from the base of the PR and between 98abf1b and 800e247.

📒 Files selected for processing (8)
  • en/docs/ai-gateway/1.2.0/README.md
  • en/docs/ai-gateway/1.2.0/llm-proxy/configure-aws-bedrock-provider.md
  • en/docs/ai-gateway/1.2.0/llm-proxy/llm-templates.md
  • en/docs/ai-gateway/1.2.0/overview.md
  • en/docs/ai-gateway/next/llm-proxy/configure-aws-bedrock-provider.md
  • en/docs/ai-gateway/next/llm-proxy/llm-templates.md
  • en/docs/ai-gateway/next/overview.md
  • en/mkdocs.yml

@coderabbitai coderabbitai Bot mentioned this pull request Aug 7, 2026
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants