Introducing Toast 1

Toast 1, our first specialised search agent, is available today. It provides frontier search quality, matching or outperforming Claude Opus 5 and GPT-5.6 Sol while being up to 10× cheaper and 12× faster. It performs best with Mixedbread Search, but it can work with any search backend.
Today, frontier models are now able to perform real knowledge work. They can reason, analyse, and find information in complex document collections. But they are also the most expensive models in the stack. As intelligence is increasingly metered, the need for specialised agents able to match their capabilities at a fraction of the cost is greater than ever.
Toast 1 can run as a standalone specialized retrieval agent, or as one of many subagents your frontier model already knows how to rely on. It fully takes over the search loop: given an initial query, it decomposes it into subqueries, gathers evidence, inspects sources, and curates the relevant context before returning it. This lets your agent spend its context and compute on the task that requires a generalist, frontier-level model: reasoning, acting, and producing the final answers.
Pareto Optimal SearchLink to section
This specialisation of agentic labor results in considerably cheaper search, but also in better end-to-end results on many realistic tasks. We found that Toast 1 establishes a new Pareto frontier across agentic workloads across cost per task and speed per task.
Financial Analysis: OfficeQA Pro V2Link to section
OfficeQA Pro V2, released by Databricks, evaluates answer correctness across 90 questions in realistic, complex enterprise financial situations.
GPT‑5.6 Sol with Toast 1 made available as a sub-agent within Codex reaches 70% answer correctness at approximately $1.15 per task: that is the highest score among the systems evaluated by Databricks in the OfficeQA v2 release, establishing new state-of-the-art performance in both quality and efficiency.
By comparison, the previous best performer, Claude Fable 5 on Databricks Genie, reaches 60% correctness at approximately $4 per task, while GPT-5.6 Sol within Codex without Toast 1 only reaches 33% correctness.
This improvement stems from reformulating the economics of evidence gathering. Toast 1's specialization allows it to produce high-quality, token-efficient evidence packages, leaving ample resources for the reasoning process to reach the final answer.
Legal Agentic Benchmark - Firm KnowledgeLink to section
Harvey LAB's Law Firm Knowledge benchmark seeks to evaluate how well an agent can search and use institutional legal knowledge at large, realistic scales.
Legal work, by nature, is context-heavy. You cannot outargue someone with access to better, more relevant precedents and details. But it is also noisy: many situations are similar but vary by simple details, making it tricky to collect high quality evidence packages without numerous false positives.
On a randomly selected subset of 33 tasks,1 we found that GPT-5.6 Sol's answer quality remained constant across search methods.
However, increasing search quality drastically increased token efficiency: replacing the vanilla agent's filesystem search with Mixedbread Search cut token usage from 80.6M to 47M at an identical task score. Subsequently adding Toast 1 as its dedicated search subagent reduced it further to 23M, and allowed it to finish in half the turns required by vanilla agent.
The introduction of a Mixedbread Search-powered Toast 1 preserved answer quality, while consuming 3.5× fewer tokens, leading to a cost reduction of over 60%. Toast 1 frees up the context window of frontier models to let them spend their tokens on reaching the right answer.
Demo: Dig Deep Into Dwarkesh's PodcastLink to section
Benchmarks and numbers can only tell one part of the story. To truly understand how Toast 1 works, there is no better way than watching it search in action. At Mixedbread, we really enjoy Dwarkesh's podcast, and thought being able to search deep into its transcripts would be fun.
You can try it yourself here.
Frontier Class RetrievalLink to section
Although it is a capable subagent for complex tasks, Toast 1 is also a capable standalone model, trained specifically for deep search. It represents the next step of our co-design approach behind our embedding models and Silo: the model, agent harness, and retrieval primitives are designed to work together.2
On a variety of deep search benchmarks, it reaches frontier model performance, standing in the same league as GPT-5.6 Sol and comfortably outperforming models such as Kimi K3 or GLM-5.2.
It remains lightweight in doing so. A standard Toast 1 run costs approximately 0.023 per query and has an eight-second median latency. Our highest-quality fusion configuration costs approximately 0.07 per query and has an eleven-second median latency. In practice, among the systems in our evaluation that reached similar performance, Toast 1 was 7–11× cheaper and considerably faster: Frontier-model retrieval agents took between 20 seconds and four minutes on the same evaluation.
Availability and PricingLink to section
Toast 1 is available immediately through the Mixedbread API at the discounted launch pricing:
- $0.30 per million input tokens
- $0.04 per million cached input tokens (cache writes are free)
- $0.80 per million output tokens
Mixedbread search invoked by Toast 1 is priced at a special rate.
With Your Existing Retrieval StackLink to section
Toast 1 was co-designed with Mixedbread Search's primitives and will be at its strongest performance with it. But we put special care in ensuring that it remains backend agnostic: it can run over your existing retrieval indexes, and does not require migrating your existing backend. We conducted thorough testing to ensure that Toast 1 remains competitive with the performance of frontier models in similar conditions at a fraction of the cost and latency, no matter the provided index.
You can use Toast 1 with our Chat Completions API and add it as a retrieval tool to your existing agentic workflows in just a few minutes. Here is a golden harness you can use directly.
With Coding AgentsLink to section
Let your coding agents handle the integration with npx skills add mixedbread-ai/skills. Or use Toast 1 directly as a subagent with our OpenCode integration.
With Your Mixedbread StoresLink to section
from mixedbread import Mixedbread
client = Mixedbread()
results = client.stores.search(
store_identifiers=["legal-documents"],
query="does the MSA allow assignment on a change of control?",
search_options={
"agentic": True, # enable Toast 1
},
)Get an API key with $5 in included credits to try it out.
FootnotesLink to section
-
We evaluated a randomly selected subset of 33 tasks to make repeated comparative runs tractable. Every configuration used the same tasks and evaluation setup; only the retrieval stack changed. ↩
-
Toast 1 is part of a growing body of work on specialised search agents, alongside SID-1 and Chroma's Context-1. While each takes a different approach, they share the goal of bringing frontier-level retrieval to production at lower cost and latency. ↩