Compatible APIs
Use familiar OpenAI and Anthropic SDKs by changing the base URL.
Deeplinq gives your application compatible model APIs, tenant-aware retrieval, durable agents, metering, and audit-ready controls in one engine.
Use familiar OpenAI and Anthropic SDKs by changing the base URL.
Combine durable agent runs, tenant-scoped RAG, projects, and memory.
Apply budgets, guardrails, audit evidence, and least-privilege access.
Familiar from the first call
Existing OpenAI clients work with Deeplinq by supplying your engine URL and an engine-issued credential.
import OpenAI from "openai"
const client = new OpenAI({
apiKey: process.env.DEEPLINQ_API_KEY,
baseURL: "https://api.example.com/v1",
})
const response = await client.chat.completions.create({
model: "auto",
messages: [{ role: "user", content: "Hello" }],
})