feat: update LLM Gateway to 204 models#1259
Open
smakosh wants to merge 9 commits intoanomalyco:devfrom
Open
Conversation
Add LLM Gateway (llmgateway.io) as a new provider with all supported models
organized by upstream provider subdirectory.
LLM Gateway is an OpenAI-compatible API gateway that provides unified
access to 40+ LLM providers through a single API endpoint.
Directory structure:
providers/llmgateway/
├── provider.toml
├── README.md
├── scripts/
│ └── generate.ts
└── models/
├── anthropic/ (16 models)
├── openai/ (28 models)
├── google/ (19 models)
├── zai/ (17 models - GLM, CogView)
├── alibaba/ (27 models - Qwen)
├── meta/ (12 models - Llama)
├── xai/ (9 models - Grok)
├── deepseek/ (5 models)
├── bytedance/ (6 models - Seed)
├── moonshot/ (4 models - Kimi)
├── mistral/ (3 models)
├── perplexity/ (3 models - Sonar)
├── minimax/ (1 model)
├── nvidia/ (1 model)
└── llmgateway/ (2 models - auto, custom)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Removes provider subdirectories, exports all models directly to models/ folder for simpler structure. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Removes empty generate.ts file and scripts/ directory. README now links to llmgateway repo for regeneration. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
models.dev schema requires limit.output field. Defaults to 16384 when not specified. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Maps internal family names to valid models.dev families: - moonshot → kimi - bytedance → seed - zai → glm - nvidia → nemotron Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Gemma models now use "gemma" family instead of "gemini" - GPT OSS models now use "gpt-oss" family instead of "gpt" Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Regenerated model exports from latest LLM Gateway source. Adds 66 new models including Claude 4.6, GPT-5.x, Gemini 3.1, Grok 4, and more. Removes deprecated model aliases. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| @@ -0,0 +1,4 @@ | |||
| <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 218 232"> | |||
Contributor
There was a problem hiding this comment.
can we update this to match other logos? Same size/colors
Comment on lines
+1
to
+13
| # LLM Gateway Provider | ||
|
|
||
| This provider enables access to 150+ AI models through [LLM Gateway](https://llmgateway.io), an OpenAI-compatible API gateway that provides unified access to 40+ LLM providers. | ||
|
|
||
| ## Directory Structure | ||
|
|
||
| - **models/**: TOML configuration files for all supported models | ||
| - **provider.toml**: Provider configuration | ||
| - **logo.svg**: Provider logo | ||
|
|
||
| ## Regenerating Models | ||
|
|
||
| Model configurations are generated from the [LLM Gateway repository](https://github.com/theopenco/llmgateway): |
Contributor
There was a problem hiding this comment.
i dont think this is necessary
| attachment = false | ||
| reasoning = true | ||
| temperature = true | ||
| tool_call = false |
Contributor
There was a problem hiding this comment.
I think a lot of these model definitions are wrong unless I dont understand ur gateway, how could minimax be false??? for tool calls?
| temperature = true | ||
| tool_call = false | ||
| structured_output = false | ||
| open_weights = false |
Contributor
There was a problem hiding this comment.
wrong (definitely an open weight model)
Contributor
|
You should prolly do a secondary review on the models I think most of them are incorrect |
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.
Summary
Supersedes #698 with latest model data.
🤖 Generated with Claude Code