Add JetInfer as an inference provider - #2401
Closed
hsdxpro wants to merge 1 commit into
Closed
Conversation
hsdxpro
requested review from
SBrandeis,
hanouticelina and
julien-c
as code owners
August 23, 2026 15:17
hsdxpro
force-pushed
the
add-jetinfer-provider
branch
from
August 23, 2026 15:25
9d37e84 to
887f118
Compare
JetInfer (https://huggingface.co/jetinfer) serves open-weight models through a strictly OpenAI-compatible chat completions API, so the conversational helper needs no overrides.
hsdxpro
force-pushed
the
add-jetinfer-provider
branch
from
August 23, 2026 15:32
887f118 to
57ba90b
Compare
Author
|
Superseded by #2402 (reopened from a clean branch). |
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.
Registers JetInfer as an inference provider, per the register-as-a-provider guide.
https://api.jetinfer.com/v1—conversationalonly, so the helper extendsBaseConversationalTaskwith no overridesGET https://api.jetinfer.com/v1/models(pricing + context_length exposed per the billing spec); streaming, tool calling and structured output verifiedInference-Idresponse header already implemented on our sideFirst model to map once enabled:
Qwen/Qwen3.8-27B.Note
Low Risk
Additive provider registration using the existing BaseConversationalTask path; no auth, routing, or payload logic changes.
Overview
Adds JetInfer as an inference provider for chat completions.
The client can now target
provider: "jetinfer", which routes conversational requests tohttps://api.jetinfer.comviaJetInferConversationalTask(standard OpenAI-stylev1/chat/completions, no custom overrides). Docs and provider constants/types are updated accordingly.Reviewed by Cursor Bugbot for commit 57ba90b. Bugbot is set up for automated code reviews on this repo. Configure here.