docs(providers): add g0i provider page#68
Open
HorusGod007 wants to merge 1 commit intoBerriAI:mainfrom
Open
Conversation
g0i (https://g0i.ai) is an OpenAI-compatible and Anthropic-compatible AI gateway with 470+ models. Adds a docs/providers/g0i.md page with quickstart, proxy config, streaming, tools, vision, and embeddings examples — all using the existing 'openai/' prefix with api_base, no new code path needed in LiteLLM. Slotted before openrouter in sidebars.js since both are unified-gateway providers.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Adds a documentation page for g0i, an OpenAI-compatible and Anthropic-compatible AI gateway with 470+ models including Claude Opus 4.7, GPT-5.x, Gemini 3 Pro, Qwen3, Kimi K2, DeepSeek V3.
What's added
docs/providers/g0i.md— quickstart + proxy config + streaming + tools + vision + embeddings examplessidebars.js— registers the new page next to other unified-gateway providers (openrouter)No code changes
g0i exposes a standard OpenAI-compatible endpoint, so users connect via the existing
openai/prefix withapi_base='https://api.g0i.ai/v1'— no new provider class required in LiteLLM core. The doc shows that pattern for completion, streaming, tools, vision, embeddings, and image generation.Why
LiteLLM users frequently ask in issues + Discord how to point at unified gateways for cheaper Claude/GPT-5 access. This doc gives g0i users the standard config pattern they're looking for, alongside the existing pages for similar gateways.