(00)Docs · Quickstart
Point your client at one endpoint.
Dalang speaks the OpenAI and Anthropic wire protocols. Keep your SDK — change the base URL, the key, and the model.
01
Get an API key
Request preview access and we issue a key scoped to your account.
02
Set the base URL
Point your OpenAI or Anthropic client at the Dalang base URL and swap in your key.
03
Set the model
Use the single published model string: semar. Routing across the coordinated pool is handled internally.
04
Send a request
Call the endpoint you already use. One request in, one coordinated answer out.
base_url = "https://dalang.thelabs.id/v1"
api_key = "sk-thelabs-…"
# POST /v1/chat/completions
model = "semar"·Next steps