Overview
The Conductor is Mako’s flagship model. It excels at multi-step tool orchestration — resolving ENS names, fetching balances, calculating USD values, chaining web searches, and synthesizing results into natural responses.
This is the model that powers deepmako.com and the production API.
How it works
When a request arrives, the gateway routes it to the Conductor model and enters the agentic tool loop:- The model receives the conversation history, system prompt, and tool definitions.
- If the model responds with tool calls, the gateway executes them and feeds the results back.
- This loop runs for up to 8 rounds, allowing Mako to chain complex multi-step research autonomously.
- The final text response is returned in OpenAI format.
Inference parameters
Conservative sampling ensures reliable tool calling and consistent output quality.
Cold starts
The first request after a period of inactivity may take 30–90 seconds while the model loads. The gateway handles this automatically with polling. If you’re building a frontend, the503 status code indicates a cold start — display a loading state and retry.
When to use
- Complex queries requiring multiple tool calls
- Tasks that need reasoning over fetched data
- Production accuracy-critical workflows
- Any query where quality matters more than speed