feat: add Gonka Broker as a model provider#8361
Open
iamoeco wants to merge 1 commit into
Open
Conversation
Gonka Broker is an OpenAI-compatible API serving open-source models
(MiniMax, Kimi) on the decentralized Gonka network. The provider ships
with an empty model list and Jan auto-fetches the available models from
{base_url}/models, so there is no hardcoded model list and no per-model
updates. Adds the provider config, capability and sampler profiles,
logo, and an integration guide.
Author
|
Hi @Vanalite — gentle bump 🙏 CI is in "action required" (first-contributor gate). Could a maintainer hit "Approve and run"? The PR mirrors the predefined cloud-provider pattern (like your NVIDIA NIM / MiniMax additions) — auto-fetches models from /v1/models, no CLA/DCO — and I've verified it end-to-end against our live endpoint. Thanks! |
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.
Describe Your Changes
Adds Gonka Broker as a built-in remote model provider.
Gonka Broker is an OpenAI-compatible API that serves open-source models (MiniMax, Kimi and others)
running on the decentralized Gonka network. It follows the same pattern as the existing
gateway providers (OpenRouter): the provider ships with
models: []and Jan fetches theavailable models live from
{base_url}/models, so there is no hardcoded model list tomaintain and no per-model PRs.
Changes:
web-app/src/constants/providers.ts— provider entry (base_url: https://proxy.gonkabroker.com/v1, API-key setting,models: [])web-app/src/constants/models.ts— provider capability flags (auto-fetch, completion, streaming, JSON, images, tool calls, n)web-app/src/lib/providerCaps.ts— sampler capabilities (mirrors the OpenRouter gateway profile)web-app/src/lib/utils.ts—getProviderLogo+getProviderTitleentriesweb-app/public/images/model-provider/gonkabroker.svg— provider logodocs/src/pages/docs/desktop/remote-models/gonkabroker.mdx— integration guidedocs/src/pages/docs/desktop/remote-models/_meta.json,docs/src/pages/docs/desktop/manage-models.mdx,docs/_redirects— docs wiringVerified:
tsc -btypecheck andeslintpass on the web-app workspaceMiniMaxAI/MiniMax-M2.7andmoonshotai/Kimi-K2.6Fixes Issues
Self Checklist