/ 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 model for long documents, visual inputs, and broad context analysis.
View Docs
DeepAILab SUP
DeepAILab
DeepAILab brand system product for routed orchestration, governance, and advanced agent flows.
View Docs
Core Implementation
[ 02 ] GuidesChat Completions
Build conversational AI apps
Embeddings
Text vectorization & semantic search
api_keys
Implementation guide and architecture references for optimal deployment.
dev_tools
Implementation guide and architecture references for optimal deployment.
usage_billing
Implementation guide and architecture references for optimal deployment.