Quickstart
Create an API key from the dashboard and then make your first call.
from openai import OpenAI
client = OpenAI(
base_url="https://api.sable.network/v1",
api_key="sk-sable_...",
)
resp = client.chat.completions.create(
model="sable-llama-3.3-70b",
messages=[{"role": "user", "content": "What is confidential inference?"}],
)
print(resp.choices[0].message.content)Use the SDK (optional)
If you'd rather skip the base-URL boilerplate, install
@sable-network/sdk (TypeScript) or sable-network (Python) and call
new Sable({ apiKey }) / Sable(api_key=...) instead. Same interface as the
OpenAI client, pre-pointed at Sable.