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.
Quickstart · 5 minutes
- 01
Install
Download the desktop app for macOS and open it. The engine ships inside.
- 02
Connect Ollama
Soriku auto-detects local Ollama. Or paste a remote API key.
- 03
Run the benchmark
Takes about 4 minutes per model. Sets up your capability map.
- 04
Ask anything
Open the chat or hit the OpenAI-compatible endpoint.
- 05
Build an agent
Create a persona, give it tools, share it with your team.
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.
# Pythonfrom 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 answeredModel auto hands the choice to the capability map. Name a model instead and Soriku uses that one.
Deeper reading