sample-data is a live
namespace loaded with real content — video, ad creatives, PDFs, and a product
catalog, already extracted and searchable — and the retrievers below are published
publicly, so every example on this page runs with no account and no API key.
Copy any curl here into a terminal right now. It will return real results.
It is also the working version of the two diagrams on the
Introduction page: how content decomposes into layers,
and how a retriever reassembles those layers at query time.
Run your first query
NoAuthorization header. No X-Namespace. Just a query.
Diagram 1 — how content decomposes
The first diagram on the Introduction page (source → temporal segments → detected entities) is a real two-tier pipeline here. Each bucket is extracted into a tier-0 collection, and tier-0 is extracted again into a tier-1 collection — the layer you actually search.
The
document-archive row is the clearest illustration: decomposition is a real
one-to-many fan-out, not a reformat. Seven PDFs become 59 independently
searchable nodes — and each node still knows which PDF it came from, which is what
makes the next section work.
Diagram 2 — how retrieval reassembles
The second diagram (query → vector search → entity filter → similarity rank → enrich) is exactly what Scene Moment Reassembly does. The other three apply the same reassembly idea to different content. Every one is runnable as-is.Scene Moment Reassembly — the diagram, literally
Scene Moment Reassembly — the diagram, literally
sample-scene-reassembly — all four stages in the diagram’s order:
feature_search (vector) → attribute_filter (genre) → rerank
(cross-encoder) → document_enrich (join the tier-1 faces back in).title, description, start_time/end_time,
genre — each carrying a face_crop_url for the person detected in that
scene. That join is the whole point: the tier-0 scene and its tier-1 entities
come back reassembled into one result, so you get “who is on screen, and when.”Person Across Media — one face, across two ads
Person Across Media — one face, across two ads
sample-person-across-media — feature_search over ArcFace embeddings spanning
two buckets’ tier-1 collections (scene-entities + ad-entities) →
document_enrich to join back to the source.titles — Pipeline is product reel and
Vector DB scam reel. That is the lesson: the same person found across two
different documents, not a single self-match.Swap in any face image URL. A face that does not appear in the sample content
correctly returns nothing — that is reverse-face search working, not failing.
This retriever needs an image; a text query has no face to embed.Document Knowledge Explorer — search nodes, get the source
Document Knowledge Explorer — search nodes, get the source
sample-document-knowledge — feature_search over the graph nodes →
document_enrich to join back to the parent PDF.description is the matched node text and object_type tells you
what it is (e.g. paragraph) — but title is the parent document
(Chevron Financial Filing). You search fine-grained pieces and still get the
source back. Several hits often share one parent: that is the 7-PDFs-to-59-nodes
fan-out from Diagram 1, seen from the query side.Hybrid Catalog Search — one query, two modalities
Hybrid Catalog Search — one query, two modalities
sample-hybrid-catalog — a single feature_search running two modalities at
once (SigLIP text-to-image over product-images + E5 text over
product-text), fused with RRF.product_name, price, category, and description.
A product can appear from both its imagery and its text — the same item
reached down two independent paths and merged into one ranking.RRF scores are rank-based (all hits land near
0.017), so read the order,
not the magnitude — the score is not a similarity. The sample catalog is small
(8 products), so a broad query returns most of it; ranking is what changes.Media fields (
thumbnail_url, video_segment_url, face_crop_url) are signed
URLs minted fresh on every request and expire after about a day. The fields are
always present — just don’t expect a URL you copied yesterday to still resolve.Make it yours
These pipelines use the same stages you would configure yourself. Fork the namespace in Studio for an editable copy, or read how the pieces work:Retrievers
Compose search stages into a pipeline
Feature extraction
How content is decomposed into searchable layers

