Home / Companies / Ragie / Blog / November 2024

November 2024 Summaries

3 posts from Ragie

Filter
Month: Year:
Post Summaries Back to Blog
Ragie, a data processing tool, demonstrated impressive capabilities in a FinanceBench evaluation by efficiently handling over 50,000 pages of complex financial documents, outperforming Shared Store retrieval benchmarks by 42%. Despite excelling in text data processing, Ragie initially struggled with tables, a crucial component for accurate data interpretation. To address this, Ragie's table extraction and chunking pipeline was enhanced, incorporating advanced models for table structure detection, OCR for header and row extraction, and specialized chunking methods that preserve data integrity. These improvements resulted in a 25% increase in table extraction speed and superior performance in FinanceBench tests, with Ragie exceeding single store benchmarks by 58% and complex shared store benchmarks by 137%. These innovations have strengthened Ragie's ability to support developers with robust solutions for large-scale, multi-modal datasets.
Nov 25, 2024 375 words in the original blog post.
This cookbook provides a step-by-step guide on integrating Ragie's TypeScript SDK with OpenAI's GPT-4 to create an AI assistant capable of retrieving and responding to queries using indexed data from various sources like Google Drive or PDFs. The process begins with connecting data sources to Ragie for indexing, followed by setting up the environment with necessary packages and secure API key storage. The guide outlines how to initialize the Ragie and OpenAI SDKs, handle user queries, retrieve relevant data chunks from Ragie, and process these chunks to form coherent input for the OpenAI model. The AI assistant is designed to provide succinct, professional responses based on Ragie's Docs, enhancing user interaction by offering context-rich answers. The setup is aimed at developers seeking to incorporate Ragie's RAG API into their applications and leverage AI for improved user assistance.
Nov 18, 2024 1,240 words in the original blog post.
Hybrid Search is a powerful approach for search-centric applications, combining the strengths of semantic and keyword-based search to enhance precision and recall. It captures user intent and finds exact keyword matches, making it suitable for fields like legal research, customer support, knowledge management, and enterprise search. Ragie's Hybrid Search system integrates semantic retrieval with keyword retrieval using BM25 scoring, storing document chunks in both a vector and a full-text index. The results are weighted, merged using reciprocal rank fusion, and reranked with an LLM-based approach to optimize relevance. This method supports hierarchical summarization, ensuring seamless integration with Ragie's advanced RAG setup, and is fully partition-aware, maintaining accuracy across different data partitions. Developers can configure Hybrid Search via Ragie's API, allowing adjustments to refine retrieval scope and results.
Nov 11, 2024 761 words in the original blog post.