July 2025 Summaries
6 posts from Unstructured
Filter
Month:
Year:
Post Summaries
Back to Blog
The text outlines a guide to building a no-code document processing pipeline that transforms unstructured data from various sources like cloud storage or enterprise SaaS platforms into structured JSON and delivers it to Redis for real-time use. By utilizing Unstructured, a tool for data transformation, users can efficiently convert documents from an Amazon S3 bucket into a structured format ready for downstream applications such as chatbots or LLM agents. The guide provides detailed steps on setting up connectors for S3 and Redis, configuring the pipeline with nodes like Source, Partitioner, Chunker, and Destination, and monitoring job progress to ensure successful data transformation and delivery. Once processed, the structured data stored in Redis can be easily accessed and utilized for a variety of real-time applications, demonstrating an effective way to manage and leverage data without needing to code.
Jul 30, 2025
1,243 words in the original blog post.
In exploring alternatives to vector embeddings for Retrieval-Augmented Generation (RAG) pipelines, this text discusses a simpler approach using BM25, a keyword-based search algorithm integrated with Elasticsearch, to retrieve documents based on term matching rather than semantic understanding. The approach is particularly effective when dealing with structured content and precise queries, as it avoids the latency and complexity associated with embedding models. The pipeline involves processing documents with Unstructured, indexing them into Elasticsearch Serverless, and using BM25 for retrieval, which provides clear and debuggable results without the need for vectors. However, BM25's limitation lies in its inability to handle abstract or differently phrased queries, which can lead to incomplete or inferred answers from the language model that generates responses based on retrieved content. The text suggests that while BM25 is suitable for sharp queries and consistent language, hybrid strategies combining keyword and semantic search could enhance retrieval when dealing with more complex queries.
Jul 26, 2025
1,797 words in the original blog post.
Modern AI systems rely on transforming unstructured content into structured, vectorized knowledge, and Unstructured's Workflow builder provides a streamlined, no-code solution for this process. Users can ingest various document types, such as PDFs and Word docs, from Amazon S3, apply parsing and metadata enrichment, generate embeddings, and send the results directly to MongoDB Atlas, all through a user-friendly interface. The tutorial guides users through setting up a document ingestion pipeline from S3 to MongoDB, including connecting S3 buckets, creating MongoDB projects and clusters, and configuring connectors in Unstructured. The process eliminates the need for writing custom code or managing orchestration, offering a fast and reliable method for creating AI-ready data vectors. Additionally, it supports advanced options like image description enrichment and table summarization, making it suitable for applications like Retrieval-Augmented Generation (RAG) or semantic search systems.
Jul 15, 2025
1,251 words in the original blog post.
Airlines, navigating a complex landscape of policies and regulations, often struggle with fragmented knowledge stored in inconsistent formats across various systems, hindering real-time access to critical information. To address this, organizations are adopting platforms like Unstructured to consolidate and transform diverse policy documents into a structured, AI-ready format. This solution standardizes and enriches content from various sources, converting it into structured JSON with metadata, which enhances the functionality of AI tools such as virtual assistants and internal search systems. By ensuring reliable real-time access to updated policies, airlines improve AI and agent performance, reduce engineering overhead, and facilitate broader team adoption through a unified data layer. This approach allows for scalable AI deployments, offering secure, enterprise-grade control and supporting a range of GenAI applications without relying on manual preprocessing, thereby fostering smarter and more consistent user experiences across the organization.
Jul 12, 2025
499 words in the original blog post.
Retrieval Augmented Generation (RAG) pipelines often encounter issues with retrieving the most relevant information, leading to inaccuracies in generated content, particularly when handling complex queries. The text discusses enhancing a basic RAG setup by incorporating a reranking step, which evaluates and reorders retrieved document chunks by semantic relevance, thereby improving the quality of the context used by language models like GPT-4. This walkthrough describes a process where raw patent documents are parsed and chunked using the Unstructured platform, stored in Pinecone as vector embeddings, and then queried for relevant information. While a simple retrieval method is fast, it can struggle with precision, especially for intricate queries, so reranking is proposed as a solution to refine search results by over-fetching and narrowing down the most pertinent data before it is fed into the language model. The text concludes that while reranking may not be necessary for every use case, it is a valuable addition for scenarios involving complex queries or verbose documents, as it enhances retrieval accuracy without significantly altering the existing pipeline.
Jul 08, 2025
1,387 words in the original blog post.
This tutorial provides a comprehensive guide on building a document transformation pipeline using Unstructured’s web-based Workflow builder, which facilitates seamless data movement from Amazon S3 to Qdrant without the need for orchestration code. The process involves connecting an S3 bucket to Unstructured, creating S3 and Qdrant connectors, setting up a Qdrant cluster, initializing collections, and building a workflow to process documents. Users can automatically partition text from various document types, generate embeddings, and push vectors into Qdrant for applications such as search or retrieval-augmented generation (RAG). The workflow supports customizable options like embedding model selection, image description enrichment, and table summary conversion, enhancing document content with natural language processing. The tutorial culminates in a fully automated pipeline, serving as an efficient starting point for indexing or deploying RAG systems.
Jul 02, 2025
825 words in the original blog post.