/ Developer Quickstart
DeepAILab Platform
Make your first API request in minutes. Learn the basics of the DeepAILab platform.
import DeepAILab from "deepailab";
const client = new DeepAILab();
const response = await client.chat.completions.create({
model: "gpt-5.4",
messages: [
{ role: "user", content: "Compare Claude, GPT, Gemini, and DeepAILab routed models, then recommend a production default model." }
],
});
console.log(response.choices[0].message.content);