← Back to blog

Introducing Toru: Rethinking AI Search from First Principles

July 24, 2025, 6 min read, Product

Search should not feel like wrestling a web browser. Toru makes finding information feel simple, fast, and private, whether you ask with text, voice, files, or images.

Why build Toru?

What Toru does today

How Toru works (at a high level)

  1. Ingestion: Crawl or upload content. We tokenize, chunk, and embed with AI models.
  2. Retrieval: Hybrid search, keyword plus vector, to fetch the right passages fast.
  3. Reasoning: An AI agent synthesizes, cites, and formats answers.

Example API call

curl -X POST https://api.chiatech.xyz/v1/toru/search \
  -H "Authorization: Bearer $CHIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Summarize the key differences between supervised and unsupervised learning",
    "sources": ["web", "file:docs/ml-intro.pdf"]
  }'

Privacy by design

Toru is built on a strict privacy model: no ads, no third party data brokers, and transparent controls for what is stored.

What is next