docs: add QVAC local provider#30410
Open
simon-iribarren wants to merge 4 commits into
Open
Conversation
- bump small_model (qwen3-1.7b) to 8k context so it survives opencode's summarization/compaction passes, not just title generation - warn that qvac serve defaults to port 11434, same as Ollama
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.
Issue for this PR
No linked issue — documentation addition.
Type of change
What does this PR do?
Adds a
### QVACsection to the providers docs, next to the existing llama.cpp / LM Studio / Ollama local-provider entries.QVAC is a local-first AI runtime that exposes an OpenAI-compatible server via
qvac serve openai; the@qvac/ai-sdk-providernpm package is a branded wrapper around@ai-sdk/openai-compatiblethat points at it. The section shows theopencode.jsonprovider block plus the matchingqvac.config.json, and calls out the non-obvious things needed for it to behave as an agent backend:opencode.json;ctx_sizeexplicitly because the default 1024-token context is too small for coding-agent prompts;gpt-oss-20bas the recommended local backend.QVAC now queues same-model completion requests, so
modelandsmall_modelcan point at the same local alias. A separate lightersmall_modelremains optional if users want title, summary, or compaction calls to avoid waiting behind long chat responses.A QVAC provider entry is also in review at anomalyco/models.dev#1954, so QVAC will show up in
/connectonce that lands; this docs section is the explicit equivalent.How did you verify your code works?
Ran
qvac serve openailocally and pointed OpenCode at it using this provider config. The single-model setup now works for both the main chat model and OpenCode'ssmall_modelutility calls because QVAC queues same-model completion requests.Screenshots / recordings
Docs-only change.
Checklist