Skip to main content

Getting Started

Getting started with Bijak Cloud - Bijak Cloud Docs

Provision your first GPU instance and run inference in under 10 minutes.

Prerequisites

  • A Bijak Cloud account (request at /contact)
  • An SSH key pair
  • The bijak CLI

Install the CLI

curl -fsSL https://get.bijakcloud.example | sh

Authenticate

bijak auth login

Launch your first GPU instance

bijak compute instances create \
  --name hello-malaysia \
  --gpu h100 \
  --region my-cyberjaya

Within 90 seconds you’ll have an instance ready. All inference runs inside Malaysian data centres.

Run an inference call

Once your instance is up, you can call the inference API directly:

curl -X POST https://api.bijakcloud.example/v1/inference/chat \
  -H "Authorization: Bearer $BIJAK_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bijak-merlion-13b",
    "messages": [{"role": "user", "content": "Hello from Kuala Lumpur!"}]
  }'

Every byte of this request — the prompt, the response, the model weights — stays in the Cyberjaya region.

Next steps