Models
ZeroEntropy offers state-of-the-art models for retrieval and reranking:-
zerank-1andzerank-1-small
Cross-encoder rerankers that can dramatically improve the ordering of your search results.
They work on top of any vector or hybrid retriever, boosting precision by learning subtle semantic distinctions across complex domains — from legal and financial documents to code and scientific text. -
zembed-1(early preview)
A high-quality embedding model optimized for retrieval across multilingual and technical datasets.
Available upon request for early access.
End-to-End Search Engine
Beyond individual models, ZeroEntropy provides an end-to-end search engine that integrates retrieval, reranking, and query orchestration into a single unified API.You can build custom indexes, control document granularity, and query at the level of collections, documents, pages, or snippets. See the Architecture section → for a detailed breakdown of how all components connect.
Data Concepts
- Collections: Independent datastores for your documents — ideal for multi-tenant or multi-dataset setups.
- Documents: Core indexing units. Each document can include metadata for document-level filtering.
- Pages: Ordered segments within a document, preserving contextual flow (e.g., PDF pages or sequential messages in a conversation).
Query Modes
- Top-K Documents — retrieve the most relevant documents for a query.
- Top-K Pages — retrieve the most relevant pages within documents.
- Top-K Snippets — fine-grained retrieval for short, high-precision results (≈200–2000 characters), with built-in reranking
Examples
- Files: PDFs or .docx uploads are automatically parsed into pages.
- Conversations: Treat each Slack channel as a document and each message as a page to preserve message order.
- CSVs: Each row (e.g., SKU) can be indexed as a document for structured retrieval.
By understanding these concepts, you can combine ZeroEntropy’s models and search architecture to build the most accurate and customizable retrieval systems available.
Next: explore the API Reference →