Add PRXVT AI provider#2635
Open
PRXVT wants to merge 2 commits into
Open
Conversation
PRXVT AI (https://prxvt.ai) is an OpenAI-compatible inference gateway. Endpoints follow the OpenAI Chat Completions shape (https://api.prxvt.ai/v1/chat/completions) with bearer-token auth. - provider.toml: @ai-sdk/openai-compatible, api https://api.prxvt.ai/v1, env PRXVT_API_KEY - logo.svg: monochrome currentColor mark, transparent background, tightly centered viewBox (matches existing provider logo conventions) - 20 served models, with pricing/context taken from the live GET /v1/models catalog, including PRXVT MoA (mixture-of-agents over frontier models, synthesized by Claude Opus 4.8) - Wrapped models reuse provider-agnostic facts via base_model and only declare PRXVT-specific cost; Hermes 4 405B, DeepSeek V3.1, and PRXVT MoA are defined in full since no shared models/ metadata exists for them - Reasoning models that stream interleaved thinking (deepseek-v3.1, deepseek-v4-flash, gemini-3.1-pro, kimi-k2.6, hy3-preview) declare reasoning_options effort levels and interleaved reasoning_details, verified against the live API
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.
Add PRXVT AI provider
Adds PRXVT AI, an OpenAI-compatible inference gateway, as a new provider.
@ai-sdk/openai-compatibleagainsthttps://api.prxvt.ai/v1(OpenAI Chat Completions shape, e.g.
POST /v1/chat/completions)PRXVT_API_KEY→Authorization: Bearer prxvt-sk-…currentColorSVG, transparent background, centered viewBoxModels
20 served models, with names, context windows, modalities, and pricing.
This includes PRXVT MoA, a mixture-of-agents model that routes across frontier models and synthesizes a
final answer.
Validation
All provider and model configs validate against the core schema and the
base_modelmerge logic (bun validateequivalent) provider valid, all 20 models valid.