Developer platform documentation

Connect models. Ground agents. Govern every request.

Deeplinq gives your application compatible model APIs, tenant-aware retrieval, durable agents, metering, and audit-ready controls in one engine.

Compatible APIs

Use familiar OpenAI and Anthropic SDKs by changing the base URL.

Grounded agents

Combine durable agent runs, tenant-scoped RAG, projects, and memory.

Governed by default

Apply budgets, guardrails, audit evidence, and least-privilege access.

Familiar from the first call

Keep the SDK. Change the endpoint.

Existing OpenAI clients work with Deeplinq by supplying your engine URL and an engine-issued credential.

server.ts
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" }],
})