Skip to content

docs: improve README SEO for AI gateway discoverability#140

Merged
SantiagoDePolonia merged 3 commits intomainfrom
docs/seo-improvements
Mar 12, 2026
Merged

docs: improve README SEO for AI gateway discoverability#140
SantiagoDePolonia merged 3 commits intomainfrom
docs/seo-improvements

Conversation

@SantiagoDePolonia
Copy link
Copy Markdown
Contributor

@SantiagoDePolonia SantiagoDePolonia commented Mar 12, 2026

Summary

  • Add Docker Pulls and Go Version badges for trust signals
  • Rename title to "GOModel — AI Gateway Written in Go" for keyword targeting
  • Update section headers with SEO keywords: "Deploy the AI Gateway", "Supported LLM Providers", "OpenAI-Compatible API Endpoints", "Gateway Configuration"
  • Add Community section with Discord link

Test plan

  • Verify badges render correctly on GitHub
  • Confirm all internal links still work
  • Check README renders properly in GitHub preview

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Documentation
    • Restructured README with clearer section titles (AI Gateway deployment, OpenAI-compatible API, Gateway Configuration)
    • Expanded Quick Start with explicit Docker run examples and multi-provider credential guidance; standardized punctuation and warnings
    • Broadened Supported LLM Providers section with model/identifier notes and API guidance
    • Added Docker Pulls and Go Version badges
    • Introduced and promoted a Community section linking to Discord

Add Docker Pulls and Go Version badges, rename section headers to
include target keywords (AI Gateway, OpenAI-Compatible, LLM Providers,
Gateway Configuration), and add a Community section.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 12, 2026

Warning

Rate limit exceeded

@SantiagoDePolonia has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 18 minutes and 42 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 7c3cd929-7c7b-4ac8-a6eb-ccc0ac2e1411

📥 Commits

Reviewing files that changed from the base of the PR and between 51a65ef and 3cedec0.

📒 Files selected for processing (1)
  • README.md
📝 Walkthrough

Walkthrough

README.md updated: sections renamed and reorganized, badges for Docker Pulls and Go version added, Quick Start expanded with docker run examples and credential guidance, Supported Providers and API Endpoints reframed, Gateway Configuration updated, Community section added, and minor formatting tweaks.

Changes

Cohort / File(s) Summary
Documentation
README.md
Renamed and reorganized headings (e.g., Quick Start → Deploy the AI Gateway, Supported Providers → Supported LLM Providers, API Endpoints → OpenAI-Compatible API Endpoints, Configuration → Gateway Configuration); added Docker Pulls and Go version badges; expanded Quick Start with explicit docker run examples and multi-provider credential guidance; updated endpoint and configuration tables; introduced a Community/Discord section; punctuation and formatting consistency fixes.

Sequence Diagram(s)

(omitted — changes are documentation-only and do not introduce new runtime control flow)

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

Poem

🐰 I hopped through README lines tonight,
Badges gleamed and headings set to right,
Docker examples thumped a joyful beat,
Providers listed, community to meet,
Hop on — the gateway’s docs feel bright! 🎉

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: SEO improvements to the README documentation, which aligns with the added badges, renamed sections with keywords, and new Community section.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch docs/seo-improvements
📝 Coding Plan
  • Generate coding plan for human review comments

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 and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

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 (1)
README.md (1)

23-31: ⚠️ Potential issue | 🟡 Minor

Document the Linux caveat for the Ollama example.

host.docker.internal works on Docker Desktop, but it is not reliably available on Linux. As written, this quick-start path can fail for Linux users trying a local Ollama instance.

Suggested doc tweak
 docker run --rm -p 8080:8080 \
   -e OPENAI_API_KEY="your-openai-key" \
   -e ANTHROPIC_API_KEY="your-anthropic-key" \
   -e GEMINI_API_KEY="your-gemini-key" \
   -e GROQ_API_KEY="your-groq-key" \
   -e XAI_API_KEY="your-xai-key" \
   -e OLLAMA_BASE_URL="http://host.docker.internal:11434/v1" \
   enterpilot/gomodel

+For Linux, host.docker.internal may require --add-host=host.docker.internal:host-gateway or another host-reachable address.

</details>

<details>
<summary>🤖 Prompt for AI Agents</summary>

Verify each finding against the current code and only fix it if needed.

In @README.md around lines 23 - 31, Update the README's Docker quick-start
snippet to document the Linux caveat: note that host.docker.internal is not
always available on Linux and instruct Linux users to run the docker command
with an alternative host mapping (for example adding
--add-host=host.docker.internal:host-gateway or using the host's reachable IP)
so a local Ollama instance at OLLAMA_BASE_URL will be reachable; add this note
adjacent to the provided docker run example and include the suggested flag usage
as the recommended workaround.


</details>

</blockquote></details>

</blockquote></details>
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@README.md`:
- Around line 145-147: Update the "Gateway Configuration" section to point at
the canonical config file: change the prose reference from `config.yaml` to
`config/config.yaml` and update the existing link that currently targets
`config/config.example.yaml` so it points to `config/config.yaml` (while still
mentioning `.env.template` for env vars). Ensure the heading text and the
sentence "See `.env.template` and `config/config.example.yaml`" are edited to
read "See `.env.template` and `config/config.yaml`" so readers are directed to
the authoritative configuration schema.

---

Outside diff comments:
In `@README.md`:
- Around line 23-31: Update the README's Docker quick-start snippet to document
the Linux caveat: note that host.docker.internal is not always available on
Linux and instruct Linux users to run the docker command with an alternative
host mapping (for example adding --add-host=host.docker.internal:host-gateway or
using the host's reachable IP) so a local Ollama instance at OLLAMA_BASE_URL
will be reachable; add this note adjacent to the provided docker run example and
include the suggested flag usage as the recommended workaround.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 8df61271-46c6-4571-85b7-596b419bd5a7

📥 Commits

Reviewing files that changed from the base of the PR and between 6a3b490 and 03abb35.

📒 Files selected for processing (1)
  • README.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

♻️ Duplicate comments (1)
README.md (1)

147-147: ⚠️ Potential issue | 🟡 Minor

Point to the canonical config file, not the example.

The documentation references config/config.example.yaml, but according to learnings, the canonical configuration file is config/config.yaml. Readers should be directed to the authoritative schema.

📝 Proposed fix to reference the canonical config file
-GOModel is configured through environment variables and an optional `config.yaml`. Environment variables override YAML values. See [`.env.template`](.env.template) and [`config/config.example.yaml`](config/config.example.yaml) for the available options.
+GOModel is configured through environment variables and an optional `config/config.yaml`. Environment variables override YAML values. See [`.env.template`](.env.template) and [`config/config.yaml`](config/config.yaml) for the available options.

Based on learnings: Configuration must follow .env.template and config/config.yaml structure with environment variables for server, storage, audit logging, usage tracking, cache, HTTP client, resilience, metrics, guardrails, and provider settings.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 147, Update the README sentence that currently points to
`config/config.example.yaml` to reference the canonical configuration file
`config/config.yaml`; specifically change the line mentioning "See
`.env.template` and `config/config.example.yaml`" so it reads "See
`.env.template` and `config/config.yaml`" and ensure any surrounding text still
communicates that environment variables override YAML values and that
`config/config.yaml` is the authoritative schema for server, storage, audit
logging, usage tracking, cache, HTTP client, resilience, metrics, guardrails,
and provider settings.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@README.md`:
- Line 7: The Go Version badge markdown currently links to a relative path
"(go.mod)"; update that link to the full GitHub URL for the go.mod file (e.g.,
"https://github.com/ENTERPILOT/GOModel/blob/main/go.mod") so the badge resolves
correctly when the README is viewed, keeping the badge text and image URL ([![Go
Version](https://img.shields.io/github/go-mod/go-version/ENTERPILOT/GOModel)])
unchanged.

---

Duplicate comments:
In `@README.md`:
- Line 147: Update the README sentence that currently points to
`config/config.example.yaml` to reference the canonical configuration file
`config/config.yaml`; specifically change the line mentioning "See
`.env.template` and `config/config.example.yaml`" so it reads "See
`.env.template` and `config/config.yaml`" and ensure any surrounding text still
communicates that environment variables override YAML values and that
`config/config.yaml` is the authoritative schema for server, storage, audit
logging, usage tracking, cache, HTTP client, resilience, metrics, guardrails,
and provider settings.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 5f2e0451-eb1e-43ad-bedd-81e0fb98e254

📥 Commits

Reviewing files that changed from the base of the PR and between 03abb35 and 51a65ef.

📒 Files selected for processing (1)
  • README.md

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@SantiagoDePolonia SantiagoDePolonia merged commit 722d186 into main Mar 12, 2026
13 checks passed
@SantiagoDePolonia SantiagoDePolonia deleted the docs/seo-improvements branch March 22, 2026 14:26
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.

1 participant