Integrations
Proxy Mode
Use Vaner as an OpenAI-compatible endpoint with context injection.
[!TIP] If your client supports MCP tools, use MCP mode instead. Proxy mode is a compatibility fallback for OpenAI-only clients.
Start the proxy
vaner proxy --path . --host 127.0.0.1 --port 8471Minimal client config
Point your OpenAI-compatible client to:
- Base URL:
http://127.0.0.1:8471/v1 - API key: any non-empty string if your client requires one
Quick test
curl -s http://127.0.0.1:8471/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model":"vaner",
"messages":[{"role":"user","content":"where is auth enforced?"}]
}'Use proxy mode when the tool only understands /v1/chat/completions and you
want context injection transparently.