Docs
5-minute quickstart
From zero to your first API call in under five minutes. No fluff.
1
2
3
4
Install & call
pip install openai then drop in 4 lines:from openai import OpenAI
client = OpenAI(
base_url="https://api.getnimbus.net/v1",
api_key="mk-your-key-here",
)
response = client.chat.completions.create(
model="meridian-1",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)5
Ship
That's it. Same SDK you already know. Drop it into your app and deploy.
Need help? Browse the full docs or join Discord.