paper-with-me

Papers

RAG Without the Lag: Interactive Debugging for Retrieval-Augmented Generation Pipelines

2025-04-18 · Quentin Romero Lauro, Shreya Shankar, Sepanta Zeighami, Aditya Parameswaran

Retrieval-augmented generation (RAG) pipelines have become the de-facto approach for building AI assistants with access to external, domain-specific knowledge. Given a user query, RAG pipelines typically first retrieve (R) relevant information from external sources, before invoking a Large Language Model (LLM), augmented (A) with this information, to generate (G) responses. Modern RAG pipelines frequently chain multiple retrieval and generation components, in any order. However, developing effective RAG pipelines is challenging because retrieval and generation components are intertwined, making it hard to identify which component(s) cause errors in the eventual output. The parameters with the greatest impact on output quality often require hours of pre-processing after each change, creating prohibitively slow feedback cycles. To address these challenges, we present RAGGY, a developer tool that combines a Python library of composable RAG primitives with an interactive interface for real-time debugging. We contribute the design and implementation of RAGGY, insights into expert debugging patterns through a qualitative study with 12 engineers, and design implications for future RAG tools that better align with developers' natural workflows.

📄 PDF Abstract BibTeX arXiv:2504.13587

Code (0)

등록된 구현이 없습니다.

Tasks

Language ModelingLanguage ModellingLarge Language ModelRAGRetrievalRetrieval-augmented Generation

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Linear Warmup With Linear Decay Linear Warmup With Linear Decay is a learning rate schedule in which we increase the learning rate linearly for $n$ updates and then linearly decay afterwards.
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Attention Dropout Attention Dropout is a type of dropout used in attention-based architectures, where elements are randomly dropped out of the…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Residual Connection 설명 없음

Similar Papers 제목 키워드 기반

HDLdebugger: Streamlining HDL debugging with Large Language Models

2024-03-18 · Xufeng Yao, Haoyang Li, Tsz Ho Chan, Wenyi Xiao 외

In the domain of chip design, Hardware Description Languages (HDLs) play a pivotal role. However, due to the complex syntax of HDLs and the limited availability of online resources, debugging HDL codes remains a difficul…

RetrievalRetrieval-augmented Generation

GraphSkill: Documentation-Guided Hierarchical Retrieval-Augmented Coding for Complex Graph Reasoning

2026-02-20 · Fali Wang, Chenglin Weng, Xianren Zhang, Siyuan Hong 외 arxiv

The growing demand for automated graph algorithm reasoning has attracted increasing attention in the large language model (LLM) community. Recent LLM-based graph reasoning methods typically decouple task descriptions fro…

Code Generation

Open-World 3D Scene Graph Generation for Retrieval-Augmented Reasoning

2025-11-08 · Fei Yu, Quan Deng, Shengeng Tang, Yuehua Li 외 arxiv

Understanding 3D scenes in open-world settings poses fundamental challenges for vision and robotics, particularly due to the limitations of closed-vocabulary supervision and static annotations. To address this, we propos…

Scene Graph GenerationScene UnderstandingQuestion AnsweringVisual Grounding

MADRAG: Multi-Agent Debate with Retrieval-Augmented Generation for Training-Free Analytic Essay Scoring

2026-06-04 · Ali Keramati, Shiyuan Zhou, Sharad Mehrotra, Mark Warschauer arxiv

We present MADRAG, a training-free framework for analytic essay scoring that combines multi-agent reasoning with retrieval-augmented grounding. Unlike standard LLM-as-judge approaches, which are prone to bias and unstabl…

HDLxGraph: Bridging Large Language Models and HDL Repositories via HDL Graph Databases

2025-05-21 · Pingqing Zheng, Jiayin Qin, Fuqi Zhang, Shang Wu 외

Large Language Models (LLMs) have demonstrated their potential in hardware design tasks, such as Hardware Description Language (HDL) generation and debugging. Yet, their performance in real-world, repository-level HDL pr…

RAGRetrievalRetrieval-augmented GenerationSemantic Retrieval