Chat Completions
Supported chat, tool-enabled and real-time workloads.
Keep your existing SDK, provider account and supported models. Select Auto, Maximum Savings or Zero-Loss Cache and track route, fallback, token and cost results from your dashboard.
Combined modes are beta and account-controlled. Zero-Loss Cache remains the complete-content default until enabled.
Base URL https://api.uvox.tech/openai/v1 Authentication Authorization: Bearer YOUR_UVOX_KEY Provider account Connect your OpenAI key securely in the dashboard. Optional request header X-UVOX-Mode: zero_loss_cache
Use familiar application patterns while UVOX applies the allowed engine mode and reports context and cache economics separately.
Supported chat, tool-enabled and real-time workloads.
Supported modern OpenAI request structures.
Continue using model IDs available in your provider account.
Review original input, provider input, context avoided, cached input, actual cost, route and fallback status.
Use your UVOX key and replace the base URL. Provider credentials can be stored encrypted or supplied securely per request.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_UVOX_KEY",
base_url="https://api.uvox.tech/openai/v1",
default_headers={"X-UVOX-Mode": "zero_loss_cache"},
)import OpenAI from "openai";
const client = new OpenAI({
apiKey: "YOUR_UVOX_KEY",
baseURL: "https://api.uvox.tech/openai/v1",
defaultHeaders: {"X-UVOX-Mode": "zero_loss_cache"}
});The account default can be overridden per eligible request with X-UVOX-Mode.
Recommended combined beta route. UVOX uses context optimisation only when safety and confidence gates pass.
Uses the tenant-configured beta confidence and reduction limits with the same protected-content and original-request fallback chain.
Preserves complete request content and coordinates supported provider-native cache affinity.
auto, maximum_savings, zero_loss_cache or disabled.Customers receive simple integration, transparent financial measurement and production safeguards without exposure of UVOX’s internal methods.
Start with the free monthly allowance and measure your own workload.
Create free accountRun direct and UVOX requests with the same exact JSON body. The verifier compares local SHA-256 with UVOX’s prompt-content hash and displays OpenAI provider usage, cached input and distinct response IDs.