Skip to content
Qatar Platform

Developers

Build on Qatar Platform — fast and safely

SDKs, docs, sandbox, sample apps and an AI dev assistant — all under one sovereign console.

Two-line quickstart

Call the AI Runtime in 2 lines

Every API is unified behind one SDK, with sovereign auth out of the box.

import { QatarPlatform } from "@qp/sdk";

const qp = new QatarPlatform({ tenant: "moi-qa" });

const res = await qp.ai.complete({
  model: "qp-bilingual-llm-v3",
  messages: [
    { role: "system", content: "You are a citizen-services assistant." },
    { role: "user", content: "Renew my vehicle registration" }
  ],
});

console.log(res.choices[0].message);