Tags: agent* + rag*

0 bookmark(s) - Sort by: Date ↓ / Title /

  1. This article introduces the pyramid search approach using Agentic Knowledge Distillation to address the limitations of traditional RAG strategies in document ingestion.

    The pyramid structure allows for multi-level retrieval, including atomic insights, concepts, abstracts, and recollections. This structure mimics a knowledge graph but uses natural language, making it more efficient for LLMs to interact with.

    Knowledge Distillation Process:

    • Conversion to Markdown: Documents are converted to Markdown for better token efficiency and processing.
    • Atomic Insights Extraction: Each page is processed using a two-page sliding window to generate a list of insights in simple sentences.
    • Concept Distillation: Higher-level concepts are identified from the insights to reduce noise and preserve essential information.
    • Abstract Creation: An LLM writes a comprehensive abstract for each document, capturing dense information efficiently.
    • Recollections/Memories: Critical information useful across all tasks is stored at the top of the pyramid.
  2. Minimalist LLM Framework in 100 Lines. Enable LLMs to Program Themselves.

    2025-03-04 Tags: , , , , , by klotz
  3. The article explains six essential strategies for customizing Large Language Models (LLMs) to better meet specific business needs or domain requirements. These strategies include Prompt Engineering, Decoding and Sampling Strategy, Retrieval Augmented Generation (RAG), Agent, Fine-Tuning, and Reinforcement Learning from Human Feedback (RLHF). Each strategy is described with its benefits, limitations, and implementation approaches to align LLMs with specific objectives.

    2025-02-25 Tags: , , , , , by klotz
  4. A tutorial on using Qwen2.5–7B-Instruct for creating a local, open-source, multi-agentic RAG system.

    The implementation described in the article focuses on creating a multi-agentic Retrieval-Augmented Generation (RAG) system using code agents and the Qwen2.5–7B-Instruct model. The system consists of three agents working together in a hierarchical structure:

    1. Manager Agent: This top-level agent breaks down user questions into sub-tasks, utilizes the Wikipedia search agent to find information, and combines the results to provide a final answer. Its system prompt is tailored to guide it through the process of decomposing tasks and coordinating with other agents.

    2. Wikipedia Search Agent: This agent interacts with the Wikipedia search tool to identify relevant pages and their summaries. It further delegates to the page search agent for detailed information retrieval from specific pages if needed. Its prompt is designed to help it navigate Wikipedia effectively and extract necessary information.

    3. Page Search Agent: This agent specializes in extracting precise information from a given Wikipedia page. It uses a semantic search tool to locate specific passages related to the query.

    To implement the multi-agent system efficiently, the article mentions several key decisions and modifications to the default Hugging Face implementation:

    • Prompting: Customized prompts for each agent, including specific examples that mirror the model’s chat template, to improve task-specific performance.
    • History Summarization: Limiting the history passed to each step to avoid excessive context length and improve execution speed.
    • Tool Wrapping: Wrapping managed agents as tools to allow better control over the prompts and streamline the architecture.
    • Error Handling: Implementing mechanisms to handle tool execution errors effectively.
    • Execution Limiting: Setting a maximum number of attempts for the page search agent to prevent infinite loops when searching for information that might not be present on the page.
    • Tool Response Modification: Adapting the tool response format to fit the Qwen2.5–7B-Instruct model’s chat template, which supports only system, user, and assistant roles.

    By structuring the implementation with these considerations, the system achieves the capability to perform complex, multi-hop question-answering tasks efficiently, despite being powered by a relatively small model running on consumer-grade hardware

    2025-01-01 Tags: , , , , by klotz
  5. This article discusses methods to measure and improve the accuracy of Large Language Model (LLM) applications, focusing on building an SQL Agent where precision is crucial. It covers setting up the environment, creating a prototype, evaluating accuracy, and using techniques like self-reflection and retrieval-augmented generation (RAG) to enhance performance.

    2024-12-20 Tags: , , , , , by klotz

Top of the page

First / Previous / Next / Last / Page 1 of 0 SemanticScuttle - klotz.me: tagged with "agent+rag"

About - Propulsed by SemanticScuttle