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
bijakCLI
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
- Read Concepts: Sovereignty to understand the compliance posture.
- Try the Node SDK quickstart for a production-ready integration.
- Review the PDPA compliance guide if you operate in a regulated industry.