xybrid/elixir

Xybrid Elixir

AI traffic audit for your LLM apps.

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

View insights
app.ts
import OpenAI from "openai";

const openai = new OpenAI({
  // Point the base URL at the Xybrid gateway…
  baseURL: "https://gateway.xybrid.ai/openai",
  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…" }],
});