Skip to main content

/ 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 ] Catalog

Core Implementation

[ 02 ] Guides

References

[ 03 ] Docs