feat(providers): add Inco - #6978
Merged
Merged
Conversation
Inco (inco.ai) is a prepaid OpenAI- and Anthropic-compatible inference provider. Adds 7 model routes, all inheriting lab metadata via base_model with provider-specific cost and reasoning controls: - deepseek-v4.1-flash:fast ($0.60/$2.40) - glm-5.3 ($1.40/$4.40), glm-5.3:fast ($2.80/$8.80) - glm-5.3-flash:fast ($0.15/$0.50) - kimi-k3:fast ($6.00/$30.00) - minimax-m3 ($0.30/$1.20), minimax-m3:fast ($0.60/$2.40) Reasoning controls verified against the live API: - GLM models toggle via chat_template_kwargs.enable_thinking - DeepSeek and Kimi toggle via chat_template_kwargs.thinking - reasoning_effort and thinking.type are accepted but ignored - MiniMax M3 always reasons; no caller control (reasoning_options = []) All models return interleaved reasoning in reasoning_content. Logo is the "inco" Montserrat Alternates SemiBold wordmark knocked out of a square, in currentColor.
Contributor
Action items
|
Contributor
|
No actionable findings. |
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
Adds Inco — a prepaid, OpenAI- and Anthropic-compatible inference provider (
api.inco.ai).provider.toml:@ai-sdk/openai-compatible,INCO_API_KEY,https://api.inco.ai/v1logo.svg: "inco" wordmark (Montserrat Alternates SemiBold outlines) knocked out of a straight square,currentColorbase_model+ override-only (cost, reasoning options, interleaved field, display name)deepseek-v4.1-flash:fastdeepseek/deepseek-v4.1-flashglm-5.3zhipuai/glm-5.3glm-5.3:fastzhipuai/glm-5.3glm-5.3-flash:fastzhipuai/glm-5.3-flashkimi-k3:fastmoonshotai/kimi-k3minimax-m3minimax/MiniMax-M3minimax-m3:fastminimax/MiniMax-M3:fastroutes are a 2x credit premium over standard speed (documented on the Inco dashboard model list); only some models offer a standard-speed route, the rest are:fast-only.Reasoning controls (verified against the live API)
Every response carries interleaved reasoning in
reasoning_content. Probing results:chat_template_kwargs.enable_thinking = true|false; reasoning on by default (works even on GLM-5.3, unlike native z.ai where it cannot be disabled)chat_template_kwargs.thinking = true|false; reasoning is off by default on this routechat_template_kwargs.thinking = true|false; reasoning on by defaultthinking.type,chat_template_kwargs.thinking/enable_thinking, andreasoningwere all tested and ignored →reasoning_options = []reasoning_effortandthinking.typeare silently ignored on all routes (invalid values are accepted without error); no effort levels are authoredNotes
cache_readis omitted/v1/modelsexposes only IDsbun validatepassesPricing source
Inco platform dashboard model list (https://platform.inco.ai, requires sign-in; no public pricing page exists) as reported by the contributor, cross-checked against the live API catalog.