docs: add QVAC provider setup guide#555
Open
simon-iribarren wants to merge 3 commits into
Open
Conversation
Add a setup page for QVAC, a local-first, peer-to-peer AI runtime that exposes an OpenAI-compatible server via `qvac serve openai`, and connects to Roo Code through the OpenAI Compatible provider. Register it in the providers index so it appears in the sidebar and provider table.
|
@simon-iribarren is attempting to deploy a commit to the Roo Code Team on Vercel. A member of the Team first needs to authorize it. |
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.
What does this PR do?
Adds a provider setup page for QVAC and registers it in the providers index.
QVAC is an open-source runtime for local-first, peer-to-peer AI. It can expose your local models through an OpenAI-compatible HTTP server (
qvac serve openai), so it connects to Roo Code through the existing OpenAI Compatible provider — no new provider code is required.The page mirrors the format of the other local-provider pages (Ollama, LM Studio) and covers:
npm i -g @qvac/cli).qvac.config.jsonand starting the server (default port11434).http://127.0.0.1:11434/v1, any non-empty API key, and a model id equal to the serve alias.It also documents the non-obvious settings needed for QVAC to work well as a coding agent:
ctx_sizeexplicitly — the default of1024is too small for agent prompts."tools": trueso the model emits native tool calls instead of plain text (Roo Code uses native tool calling exclusively)."reasoning_budget": 0.gpt-oss-20bis recommended for local use.Files changed
docs/providers/qvac.md— new provider page.docs/providers/index.json— registers QVAC so it appears in the sidebar and the provider comparison table.How was it tested?
Validated
index.json, and the new page follows the same structure and frontmatter as the existing local-provider pages. The page uses no images and only absolute, extensionless internal links per the repo's documentation rules.