Elixir
AI traffic audit

AI traffic audit for your LLM apps.

Connect your AI traffic. Xybrid finds cost leaks, security risks, and broken workflows.

TypeScript · via gateway
OpenAI-compatibledrop-inoff the hot path
import OpenAI from "openai";

const openai = new OpenAI({
  // Point the base URL at your Xybrid gateway route…
  baseURL: "https://gateway.xybrid.dev//v1",
  apiKey: process.env.OPENAI_API_KEY,
  // …and add your Xybrid key. That's the whole integration.
  defaultHeaders: { "x-xybrid-key": process.env.XYBRID_KEY },
});

// Your calls don't change. Xybrid audits them in the background.
const res = await openai.chat.completions.create({
  model: "gpt-4o-mini",
  messages: [{ role: "user", content: "Summarize this support ticket…" }],
});
● audited · +18ms 200 OK — Xybrid flagged 1 cost issue on this route
Gateway integration · OpenAI-compatible
Point your SDK's base URL at Xybrid. Calls are byte-for-byte unchanged — audited off the hot path.