Metadata Enrichment Pipeline
Automatically enrich your data with extracted metadata: entities, topics, sentiment, language, and custom attributes. Transform raw content into structured, queryable data.
from mixpeek import Mixpeekclient = Mixpeek(api_key="YOUR_API_KEY")namespace = client.namespaces.create(name="enriched-data")collection = client.collections.create(namespace_id=namespace.id,name="customer-feedback",extractors=["entity-extraction","topic-classification","sentiment-analysis","language-detection"])# Upload content - metadata extracted automaticallyclient.buckets.upload(collection_id=collection.id,url="s3://your-bucket/feedback/")# Query enriched datapositive_feedback = client.documents.search(namespace_id=namespace.id,filters={"sentiment": "positive","topic": "product-quality"})
Feature Extractors
Retriever Stages
Use Cases Using This Recipe
Contextual Page Signals for Ad Placement
One article URL in, five structured signals out: IAB category, entities with salience scores, sentiment, brand safety, keywords.
Five, from a single pass
Signals per URL
Contextual advertising and ad-targeting teams who decide, per article, which creative renders beside it, and who need that decision to be defensible to a brand.
Related Recipes & Resources
Explore these related resources to deepen your understanding and discover more powerful features
Sentiment Analysis
Detecting emotional tone and opinion in text
Multimodal RAG Pipeline
Build a retrieval-augmented generation system that works with text, images, and video. Feed relevant multimodal context to LLMs for grounded responses.
Taxonomy Enrichment Pipeline
Automatically classify and tag content using custom taxonomies. Map your content to IAB categories, custom hierarchies, or industry-specific classifications.
Content Clustering Pipeline
Automatically group similar content together using embedding-based clustering. Discover themes, identify duplicates, and organize large content libraries.
Multimodal Knowledge Base
Consolidate documents, videos, images, and audio into a single searchable knowledge base with RAG capabilities. Supports natural language Q&A across all content types, with citations linking back to the exact source document, video timestamp, or image.
Feature Extraction
Multi-tier feature extraction that decomposes content into searchable components: embeddings, transcripts, detected objects, OCR text, scene boundaries, and more. The foundation for all downstream retrieval and analysis.