/ 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: "claude-sonnet-4-6",
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);Available Models
[ 01 ] CatalogClaude Sonnet 4.5
AnthropicNew
Default flagship for coding, support, and production starter workloads.
View Docs
GPT-5.3 Codex
OpenAI
High-end general reasoning model for complex agents and deeper analysis.
View Docs
Gemini 3 Flash
Google
Large-context multimodal model for long documents, retrieval, and vision tasks.
View Docs
DeepAILab SUP
DeepAILab
DeepAILab brand system product for routed orchestration, governance, and advanced agent flows.
View Docs