Documentation

Everything you need to ship.

The full reference docs live right here on this site. The five-minute quickstart below covers ninety percent of what you'll do on day one.

The engine is closed source for now. The repo opens up later, the docs are already complete.
In code

Drop-in for the OpenAI SDK.

Change the base URL and you are done. It works with any SDK that speaks the OpenAI API, from Cursor to your own scripts.

# Python
from openai import OpenAI
 
client = OpenAI(
base_url="http://localhost:8765/api/v1",
api_key="soriku-local"
)
 
response = client.chat.completions.create(
model="auto",
messages=[{"role": "user", "content": "Refactor this"}]
)
# response.model tells you who answered

Model auto hands the choice to the capability map. Name a model instead and Soriku uses that one.