Tagged articles

Retrieval-Augmented Generation

185 articles · Page 1 of 2
DataFunSummit
DataFunSummit
Aug 9, 2026 · Artificial Intelligence

From Flawed RAG to Production‑Ready: A Deep Dive into Scaling Retrieval‑Augmented Generation

The article analyses why early RAG deployments suffer from low recall, hallucinations and cost overruns, breaks down eight concrete pain points—from PDF parsing pitfalls to the lost‑in‑the‑middle effect—then presents a systematic diagnosis framework, proven best‑practice roadmap, advanced GraphRAG and Agentic RAG approaches, and practical engineering trade‑offs for enterprise rollout.

Agentic RAGGraphRAGHybrid Search
0 likes · 19 min read
From Flawed RAG to Production‑Ready: A Deep Dive into Scaling Retrieval‑Augmented Generation
PaperAgent
PaperAgent
Aug 6, 2026 · Artificial Intelligence

What Research Directions Are Worth Pursuing After Reviewing 407 Large Model Papers?

The author curates a collection of 407 recent large‑model papers—264 frontier works across six innovation paths and 143 top‑conference papers—classifies them into 14 hot sub‑topics, and explains how labs can match these directions to their available compute, data, and time resources.

AI researchMultimodalRetrieval-Augmented Generation
0 likes · 4 min read
What Research Directions Are Worth Pursuing After Reviewing 407 Large Model Papers?
ThinkingAgent
ThinkingAgent
Jul 25, 2026 · Artificial Intelligence

From Next Token to Deployable AI: A Comprehensive Overview of Large Model Technology

This article maps the entire large‑model production chain—from data collection, token prediction, and architecture design through training, alignment, inference, multimodal perception, agentic action, deployment, evaluation, and safety—highlighting key engineering decisions, trade‑offs, and concrete examples.

Large Language ModelsRetrieval-Augmented Generationagent safety
0 likes · 47 min read
From Next Token to Deployable AI: A Comprehensive Overview of Large Model Technology
Ray's Galactic Tech
Ray's Galactic Tech
Jul 17, 2026 · Artificial Intelligence

High‑Concurrency RAG: When to Use Classic, Graph or Agentic Architecture

The article analyzes why production‑grade RAG systems fail under load and explains how Classic, Graph, and Agentic RAG each address specific problem stages, offering concrete engineering guidelines for query normalization, caching, versioned knowledge, graph construction, stateful agents, and governance to achieve stable high‑throughput performance.

Agentic RAGRAGRetrieval-Augmented Generation
0 likes · 31 min read
High‑Concurrency RAG: When to Use Classic, Graph or Agentic Architecture
DataFunSummit
DataFunSummit
Jul 16, 2026 · Artificial Intelligence

Teaching Large Language Models Database‑Style Query Planning for Complex Reasoning

PlanRAG adapts decades‑old database query‑planning techniques to Retrieval‑Augmented Generation, turning complex, non‑linear questions into logical query trees that guide retrieval and generation, resulting in smarter search, reduced noise, lower cost, and up to 2.5× faster execution on exploratory reasoning tasks.

Large Language ModelsLogical Query TreePlanRAG
0 likes · 8 min read
Teaching Large Language Models Database‑Style Query Planning for Complex Reasoning
AI Architecture Hub
AI Architecture Hub
Jul 15, 2026 · Artificial Intelligence

Why RAG Remains Essential in the Long-Context Era: Trends and Tech Evolution

Despite the rise of million‑token long‑context models, hybrid retrieval‑augmented generation (RAG) solutions saw a 200% quarterly procurement surge while naive single‑vector RAG was abandoned by over 70% of firms, highlighting a mature, multi‑generation RAG technology stack that remains indispensable for enterprise AI.

AI engineeringHybrid RetrievalLarge Language Models
0 likes · 20 min read
Why RAG Remains Essential in the Long-Context Era: Trends and Tech Evolution
AgentGuide
AgentGuide
Jul 10, 2026 · Artificial Intelligence

What Is Retrieval‑Augmented Generation (RAG)? A Quick Technical Overview

Retrieval‑Augmented Generation (RAG) lets a large language model first fetch relevant documents, turn them into vectors stored in a vector database, and then generate answers based on those retrieved passages, ensuring more accurate and grounded responses for private or domain‑specific queries.

EmbeddingPrompt EngineeringRAG
0 likes · 7 min read
What Is Retrieval‑Augmented Generation (RAG)? A Quick Technical Overview
Woodpecker Software Testing
Woodpecker Software Testing
Jul 6, 2026 · Artificial Intelligence

How to Effectively Test Retrieval‑Augmented Generation (RAG) Systems in Real‑World Deployments

The article analyzes why traditional testing fails for Retrieval‑Augmented Generation (RAG) systems, outlines four specific testing dimensions—retrieval trustworthiness, generation consistency, context robustness, and business compliance—and demonstrates an engineering workflow that integrates these checks into CI/CD, cutting critical failures by 82%.

AI testingCI/CDFAISS
0 likes · 8 min read
How to Effectively Test Retrieval‑Augmented Generation (RAG) Systems in Real‑World Deployments
AgentGuide
AgentGuide
Jul 5, 2026 · Artificial Intelligence

Learning Path for Large‑Model Application Engineers: From Prompt & RAG to Agent Deployment

This guide outlines a comprehensive learning roadmap for large‑model application engineers, covering fundamentals such as Transformer architecture and scaling laws, practical API usage, prompt engineering, retrieval‑augmented generation, agent design, engineering best practices, security, observability, cost optimization, and fine‑tuning principles.

AI agentsAgent ArchitectureLarge Language Models
0 likes · 14 min read
Learning Path for Large‑Model Application Engineers: From Prompt & RAG to Agent Deployment
Baidu Geek Talk
Baidu Geek Talk
Jun 29, 2026 · Artificial Intelligence

How Information Theory Guides AI Coding: Fighting Entropy to Optimize Prompts and Agents

The article builds an information‑theoretic framework for AI coding, showing how entropy, conditional entropy and mutual information explain why detailed prompts still fail, why new projects succeed more easily than legacy code, and how memory, retrieval and harness engineering can be evaluated to reduce the model's guesswork.

AI codingAgent MemoryHarness Engineering
0 likes · 23 min read
How Information Theory Guides AI Coding: Fighting Entropy to Optimize Prompts and Agents
AI Engineer Programming
AI Engineer Programming
Jun 29, 2026 · Artificial Intelligence

Managing LLM Hallucinations: Strategies, Metrics, and Layered Controls

The article examines why large language models hallucinate, categorizes factual, faithfulness, and reasoning hallucinations, critiques existing benchmarks, and proposes a layered governance framework—including training‑time RLHF/DPO, retrieval‑augmented generation, post‑generation verification, uncertainty quantification, and compliance considerations—to mitigate risks in production systems.

LLMRLHFRetrieval-Augmented Generation
0 likes · 13 min read
Managing LLM Hallucinations: Strategies, Metrics, and Layered Controls
DataFunTalk
DataFunTalk
Jun 26, 2026 · Artificial Intelligence

Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices

This article examines how large‑model shortcomings such as hallucination, staleness, and data‑privacy risks are mitigated by Retrieval‑Augmented Generation, and walks through a layered enterprise‑grade RAG 2.0 design—including offline document parsing, multi‑turn query rewriting, hybrid vector‑plus‑full‑text retrieval, two‑stage ranking, knowledge filtering, and prompt‑driven generation—while sharing concrete model choices, evaluation metrics, and lessons learned.

Enterprise AIHybrid RetrievalPrompt Engineering
0 likes · 23 min read
Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices
vivo Internet Technology
vivo Internet Technology
Jun 24, 2026 · Artificial Intelligence

Defining the Right Way to Use AI: From Brain‑Like Models to Body‑Ready Agents

Although large‑language models now function like a brain, current AI agents suffer from an underdeveloped “body” – immature perception, action, and autonomic systems – and the field lacks converged best practices; tools like Harness act as an ICU, and real‑world cases such as AI‑generated PPT illustrate the urgent need to define proper usage patterns.

AI infrastructureAgent SystemsArtificial Intelligence
0 likes · 18 min read
Defining the Right Way to Use AI: From Brain‑Like Models to Body‑Ready Agents
Coder Trainee
Coder Trainee
Jun 20, 2026 · Artificial Intelligence

Java RAG Tutorial: Vector Search and Knowledge‑Base Integration

This article explains how to equip a Java application with Retrieval‑Augmented Generation (RAG) so large language models can access private PDFs, Word files, and internal documents, covering the core architecture, two implementation paths using LangChain4j and Spring AI, vector‑store options, and practical tuning techniques.

LangChain4jRAGRetrieval-Augmented Generation
0 likes · 12 min read
Java RAG Tutorial: Vector Search and Knowledge‑Base Integration
Subtle Storm
Subtle Storm
Jun 19, 2026 · Artificial Intelligence

AI Concepts Every Architect Must Master

The article outlines the essential AI fundamentals architects need—from basic machine‑learning principles, token limits, and learning paradigms to RAG pipelines, vector‑database choices, AI agents, prompt engineering, and MLOps practices—so they can design reliable, scalable AI‑driven systems.

AIAI agentsMLOps
0 likes · 7 min read
AI Concepts Every Architect Must Master
PaperAgent
PaperAgent
Jun 18, 2026 · Artificial Intelligence

How FlowRAG Evolves GraphRAG to Let Evidence Chains Flow Automatically

The article examines FlowRAG, a new variant of GraphRAG that shifts retrieval from similarity‑based text chunk ranking to constructing explicit, frequency‑aware reasoning paths, detailing its three‑step design, benchmark improvements, efficiency gains, and ablation results that reveal how it mitigates entity sparsity and noise propagation.

Dual-Granularity ActivationFlowRAGFrequency-aware weighting
0 likes · 8 min read
How FlowRAG Evolves GraphRAG to Let Evidence Chains Flow Automatically
DeepHub IMBA
DeepHub IMBA
Jun 16, 2026 · Artificial Intelligence

10 Essential LangChain & LangGraph Concepts Every AI Engineer Must Master

The article outlines ten core concepts—State, Node, Chain vs Graph, Routing, Retrieval, Structured Output, Streaming, Memory, Checkpointing, and Human‑in‑the‑Loop—explaining why they are crucial for building reliable, scalable AI agents and showing concrete Python examples for each.

AI agentsLangChainLangGraph
0 likes · 11 min read
10 Essential LangChain & LangGraph Concepts Every AI Engineer Must Master
ZhiKe AI
ZhiKe AI
Jun 15, 2026 · Artificial Intelligence

Why AI Hallucinates and How Retrieval-Augmented Generation Gives It a Research Assistant

Retrieval-Augmented Generation (RAG) equips large language models with a three‑step "retrieve‑augment‑generate" workflow, turning closed‑book AI into an open‑book system that lowers hallucinations, updates knowledge in real time, and improves answer accuracy, though it still faces retrieval errors and reasoning limits.

AI hallucinationEnterprise AIKnowledge Retrieval
0 likes · 5 min read
Why AI Hallucinates and How Retrieval-Augmented Generation Gives It a Research Assistant
AI Engineer Programming
AI Engineer Programming
Jun 14, 2026 · Artificial Intelligence

10 RAG Architectures Every AI Engineer Should Master

The article debunks the claim that Retrieval‑Augmented Generation is obsolete, explains why huge context windows are impractical, and systematically presents ten RAG patterns—from basic Naïve RAG to advanced Graph and Multimodal RAG—detailing their trade‑offs, costs, and suitable use cases.

AI architectureEmbedding ModelsRAG
0 likes · 16 min read
10 RAG Architectures Every AI Engineer Should Master
DataFunTalk
DataFunTalk
Jun 13, 2026 · Artificial Intelligence

Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices

This article examines the practical challenges of deploying Retrieval‑Augmented Generation (RAG) in enterprise settings, detailing the modular architecture, offline and online pipelines, hybrid retrieval, multi‑stage ranking, knowledge filtering, and two‑stage generation techniques that together improve search completeness, ranking quality, and answer accuracy.

Enterprise AIHybrid SearchKnowledge Graph
0 likes · 21 min read
Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices
DataFunTalk
DataFunTalk
Jun 10, 2026 · Artificial Intelligence

Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Practices

This article analyses the enterprise‑level RAG 2.0 solution, covering its background problems, layered architecture, offline and online pipelines, document parsing, multi‑turn query rewriting, hybrid vector‑plus‑BM25 retrieval, ranking models such as RRF, ColBERT and cross‑encoder, knowledge filtering, two‑stage generation with FoRAG, and practical evaluation metrics.

Enterprise AIHybrid RetrievalKnowledge Filtering
0 likes · 22 min read
Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Practices
DataFunSummit
DataFunSummit
Jun 9, 2026 · Artificial Intelligence

From Poor RAG Performance to Production‑Ready Systems: A Deep Technical Walkthrough

The article dissects why early RAG deployments suffer from low recall, hallucinations and runaway costs, then presents a step‑by‑step diagnostic framework, hybrid search architecture, knowledge‑engineering tricks, caching and routing strategies, and explores advanced GraphRAG and Agentic RAG techniques to build reliable, enterprise‑grade solutions.

Agentic RAGGraphRAGHybrid Search
0 likes · 20 min read
From Poor RAG Performance to Production‑Ready Systems: A Deep Technical Walkthrough
Tech Ocean
Tech Ocean
Jun 9, 2026 · Artificial Intelligence

RAG in Action: Enabling AI to Answer Using Your Own Documents with Spring AI

This tutorial explains how Retrieval‑Augmented Generation (RAG) eliminates hallucinations and stale knowledge by retrieving relevant document fragments from a vector store, augmenting prompts, and generating factual answers, with step‑by‑step Spring AI code examples and parameter tuning guidance.

QuestionAnswerAdvisorRAGRetrieval-Augmented Generation
0 likes · 5 min read
RAG in Action: Enabling AI to Answer Using Your Own Documents with Spring AI
DataFunSummit
DataFunSummit
Jun 6, 2026 · Artificial Intelligence

From Traffic Links to Task Management: 1688’s Agentic AI Evolution

The article details how 1688 transformed its platform from a traditional intent‑matching traffic hub into an Agentic AI system that understands business tasks, outlining a three‑step implementation of knowledge, trajectory and environment redesign, dual‑track evolution, novel evaluation methods, and the emerging role of product managers as evaluation engineers.

Retrieval-Augmented GenerationSkill Hubagentic AI
0 likes · 13 min read
From Traffic Links to Task Management: 1688’s Agentic AI Evolution
AI Engineer Programming
AI Engineer Programming
Jun 5, 2026 · Artificial Intelligence

Multi‑Hop Reasoning vs Document Parsing: Comparing GraphRAG, LightRAG, AgenticRAG and RAGFlow

The article analyzes the classic vector RAG pipeline, highlights its shortcomings for multi‑hop reasoning and global theme inference, and then systematically compares four open‑source frameworks—GraphRAG, LightRAG, AgenticRAG and RAGFlow—detailing their design choices, processing stages, trade‑offs, limitations, and practical selection guidance for production use.

AgenticRAGGraphRAGKnowledge Graph
0 likes · 17 min read
Multi‑Hop Reasoning vs Document Parsing: Comparing GraphRAG, LightRAG, AgenticRAG and RAGFlow
Java Architect Handbook
Java Architect Handbook
Jun 3, 2026 · Artificial Intelligence

What Is Retrieval‑Augmented Generation (RAG) and Why It Matters for LLM Interviews

The article explains Retrieval‑Augmented Generation (RAG), why large language models suffer from hallucination, knowledge cutoff, domain gaps and traceability issues, and how RAG’s offline‑online pipeline, comparison with fine‑tuning and long‑context approaches, and emerging trends like Agentic and Graph‑RAG can be discussed in technical interviews.

AI InterviewPrompt EngineeringRAG
0 likes · 12 min read
What Is Retrieval‑Augmented Generation (RAG) and Why It Matters for LLM Interviews
DeepHub IMBA
DeepHub IMBA
May 31, 2026 · Artificial Intelligence

Chunking Strategies for Video RAG: Pause‑Based, Sliding‑Window, and LLM‑Driven Methods

The article examines how to chunk transcribed video text for Retrieval‑Augmented Generation, comparing pause‑based, overlapping‑window, length‑based fallback, and LLM‑driven topic chunking methods, and shows how combining fine‑grained and thematic chunks yields a multi‑layered pipeline that improves context coverage for both precise and broad queries.

ChunkingLLMRAG
0 likes · 8 min read
Chunking Strategies for Video RAG: Pause‑Based, Sliding‑Window, and LLM‑Driven Methods
DataFunTalk
DataFunTalk
May 24, 2026 · Artificial Intelligence

Engineering and Algorithm Innovations for RAG Engines in Office Scenarios

The article analyzes the challenges of deploying large language models in enterprise settings and presents a modular Retrieval‑Augmented Generation (RAG) solution that combines document parsing, multi‑turn query rewriting, hybrid vector‑plus‑BM25 retrieval, two‑stage ranking (RRF, ColBERT, cross‑encoder) and knowledge‑filtered prompt engineering to achieve more comprehensive search, better ranking and more accurate answers.

Hybrid RetrievalKnowledge FilteringLarge Language Models
0 likes · 22 min read
Engineering and Algorithm Innovations for RAG Engines in Office Scenarios
Tencent Tech
Tencent Tech
May 20, 2026 · Artificial Intelligence

The Three Evolutions of AI Engineering: Prompt, Context, and Harness

This article analyzes the progressive stages of AI‑driven software engineering—Prompt Engineering, Context Engineering, and Harness Engineering—illustrating how each addresses specific challenges, presenting real‑world experiments from OpenAI and Anthropic, and outlining a roadmap for engineers to master the new paradigm.

AI agentsContext EngineeringHarness Engineering
0 likes · 19 min read
The Three Evolutions of AI Engineering: Prompt, Context, and Harness
SuanNi
SuanNi
May 20, 2026 · Artificial Intelligence

AI‑Powered Research Workflow: When to Trust the Tools and When to Supervise

The article surveys AI‑assisted research across the full lifecycle—creation, writing, validation, and dissemination—detailing the capabilities of prompt engineering, retrieval‑augmented generation, training‑free agents and hybrid methods, reporting benchmark numbers, failure modes, and governance challenges that dictate when human oversight remains essential.

AI research automationLarge Language ModelsPrompt Engineering
0 likes · 17 min read
AI‑Powered Research Workflow: When to Trust the Tools and When to Supervise
Tech Minimalism
Tech Minimalism
May 16, 2026 · Artificial Intelligence

One‑page guide to the three RAG architectures: Classic, Graph, and Agentic

The article explains why plain large language models cannot answer internal company questions, introduces Retrieval‑Augmented Generation (RAG) as a solution, and compares three RAG variants—Classic, Graph, and Agentic—detailing their workflows, strengths, limitations, and how to choose the right one for a given problem.

Agentic RAGKnowledge GraphLLM
0 likes · 17 min read
One‑page guide to the three RAG architectures: Classic, Graph, and Agentic
Lao Guo's Learning Space
Lao Guo's Learning Space
May 12, 2026 · Artificial Intelligence

Demystifying the Core Technologies Behind ChatGPT, GPT‑4, and DeepSeek

This article breaks down the key algorithms that power large‑language models—Transformer, Mixture‑of‑Experts, Flash Attention, KV‑Cache, Multi‑Token Prediction, quantization, Chain‑of‑Thought and Retrieval‑Augmented Generation—explaining how each contributes to the performance of ChatGPT, GPT‑4 and DeepSeek.

Flash AttentionKV cacheLarge Language Models
0 likes · 10 min read
Demystifying the Core Technologies Behind ChatGPT, GPT‑4, and DeepSeek
James' Growth Diary
James' Growth Diary
May 12, 2026 · Artificial Intelligence

GraphRAG Deep Dive: Boost Multi‑Hop Reasoning Accuracy from 50% to 85% with Knowledge Graphs

This article explains why traditional vector RAG loses relational information, how GraphRAG reconstructs entity‑relationship triples into a knowledge graph, and provides step‑by‑step code, performance benchmarks, retrieval modes, and practical tips that raise multi‑hop reasoning accuracy from around 50% to 85%.

GraphRAGKnowledge GraphLangChain
0 likes · 14 min read
GraphRAG Deep Dive: Boost Multi‑Hop Reasoning Accuracy from 50% to 85% with Knowledge Graphs
Linyb Geek Road
Linyb Geek Road
May 12, 2026 · Artificial Intelligence

10 Open‑Source Tools Cutting AI Agent Costs Ten‑Fold: Prompt Compression, Memory Management, Model Routing

The article explains how AI agents become expensive because they ingest massive, irrelevant context and shows ten open‑source projects—LLMLingua, mem0, LiteLLM, LlamaIndex + Chroma, Letta, Guidance, Aider, tiktoken + ttok—that compress prompts, manage memory, route models dynamically, add retrieval‑augmented generation, and enforce token budgeting, collectively reducing daily token usage by millions and slashing costs dramatically.

AI agentsMemory ManagementModel Routing
0 likes · 17 min read
10 Open‑Source Tools Cutting AI Agent Costs Ten‑Fold: Prompt Compression, Memory Management, Model Routing
James' Growth Diary
James' Growth Diary
May 9, 2026 · Artificial Intelligence

Agentic RAG Deep Dive: Letting the Agent Decide When and How Often to Retrieve

The article analyzes the shortcomings of traditional one‑shot RAG pipelines, introduces four Agentic RAG patterns that let an LLM‑driven agent control retrieval strategy, source selection, query rewriting and retry limits, and provides concrete TypeScript implementations with LangGraph, code snippets, and practical pitfalls.

Agentic RAGLLMLangGraph
0 likes · 16 min read
Agentic RAG Deep Dive: Letting the Agent Decide When and How Often to Retrieve
Lao Guo's Learning Space
Lao Guo's Learning Space
May 6, 2026 · Artificial Intelligence

Why Your RAG Keeps Missing the Mark: Enterprise‑Level Pitfall Guide

This article examines why Retrieval‑Augmented Generation systems that work in demos often fail in production, detailing common pitfalls—from chunking and vector‑database selection to hybrid retrieval and re‑ranking—and offers concrete strategies, configuration tips, and a decision tree to build reliable enterprise‑grade RAG solutions.

ChunkingEnterprise AIHybrid Retrieval
0 likes · 12 min read
Why Your RAG Keeps Missing the Mark: Enterprise‑Level Pitfall Guide
DataFunSummit
DataFunSummit
May 4, 2026 · Artificial Intelligence

Inside Alibaba Cloud AI Search: Agentic RAG Architecture and Multi‑Agent Techniques

Alibaba Cloud AI Search tackles high‑concurrency, multimodal, and multi‑hop queries by evolving its Agentic RAG architecture from a single agent to a coordinated multi‑agent system that integrates planning, retrieval, and generation, leverages hybrid vector‑text‑DB‑graph recall, GPU‑accelerated indexing, quantization, NL2SQL, and multimodal search, with performance data and real‑world case studies.

AI SearchAgentic RAGAlibaba Cloud
0 likes · 6 min read
Inside Alibaba Cloud AI Search: Agentic RAG Architecture and Multi‑Agent Techniques
DataFunTalk
DataFunTalk
May 4, 2026 · Artificial Intelligence

Engineering and Algorithm Innovations for RAG Engines in Office Applications

This article analyzes the challenges and practical solutions of building a Retrieval‑Augmented Generation (RAG) system for office scenarios, covering background issues, modular architecture, offline and online pipelines, hybrid retrieval, ranking models, knowledge filtering, prompt design, and two‑stage generation techniques.

AIHybrid RetrievalKnowledge Filtering
0 likes · 22 min read
Engineering and Algorithm Innovations for RAG Engines in Office Applications
DataFunSummit
DataFunSummit
May 3, 2026 · Artificial Intelligence

From Flawed to Production-Ready: Deep Dive into Building Enterprise-Grade RAG Systems

The article analyzes why early RAG deployments often fall short, dissects the most common technical pain points—from document parsing to vector overload—and presents a systematic roadmap that includes hybrid search, reranking, GraphRAG, Agentic RAG, model selection, scalability tricks, and security controls for robust B‑side production.

Agentic RAGEnterprise AIFine-tuning
0 likes · 20 min read
From Flawed to Production-Ready: Deep Dive into Building Enterprise-Grade RAG Systems
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 3, 2026 · Artificial Intelligence

9 Advanced Retrieval‑Augmented Generation (RAG) Architectures Explained

This article introduces Retrieval‑Augmented Generation (RAG) and systematically details nine distinct RAG architectures—standard, conversational with memory, corrective (CRAG), adaptive, self‑RAG, fusion, HyDE, agentic, and Graph RAG—highlighting their workflows, real‑world examples, advantages, and trade‑offs.

AI architectureGraphRAGLLM
0 likes · 17 min read
9 Advanced Retrieval‑Augmented Generation (RAG) Architectures Explained
MaGe Linux Operations
MaGe Linux Operations
Apr 28, 2026 · Artificial Intelligence

Why Your RAG Performance Is Poor: Common Issues and Optimization Strategies

This article systematically analyzes why Retrieval‑Augmented Generation pipelines often underperform—covering embedding model selection, chunking strategies, hybrid retrieval, reranking, context window waste, evaluation metrics, and a detailed troubleshooting checklist—while providing concrete code examples and best‑practice recommendations for engineers.

ChunkingEmbeddingHybrid Retrieval
0 likes · 19 min read
Why Your RAG Performance Is Poor: Common Issues and Optimization Strategies
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 28, 2026 · Artificial Intelligence

First Principle for Agent Product Managers: Choosing Between Single Agent, Multi‑Agent Collaboration, and Workflow

The article presents a decision framework for AI product managers, mapping workflow determinism and context certainty to four technical patterns—traditional RPA + AI, single Agent + RAG/knowledge graph, end‑to‑end RL Agent, and multi‑Agent collaboration—each with concrete use‑case examples and selection guidelines.

AI agentsRPARetrieval-Augmented Generation
0 likes · 6 min read
First Principle for Agent Product Managers: Choosing Between Single Agent, Multi‑Agent Collaboration, and Workflow
AI Illustrated Series
AI Illustrated Series
Apr 27, 2026 · Artificial Intelligence

Comprehensive RAG Interview Q&A: 22 In-Depth Questions and Answers

This extensive interview guide covers 22 core RAG questions, detailing the definition, workflow, embedding selection, vector database choices, retrieval optimization, multi‑turn handling, context compression, evaluation metrics, knowledge‑graph integration, operational challenges, Agentic and hybrid RAG, document update strategies, similarity algorithms, and hallucination mitigation, providing concrete examples and practical advice for AI interview preparation.

AI InterviewEmbeddingKnowledge Retrieval
0 likes · 29 min read
Comprehensive RAG Interview Q&A: 22 In-Depth Questions and Answers
DataFunTalk
DataFunTalk
Apr 26, 2026 · Artificial Intelligence

Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices

This article analyses the practical construction of an enterprise‑level Retrieval‑Augmented Generation (RAG) 2.0 system, covering background issues of large models, a modular architecture, layered offline/online pipelines, hybrid retrieval, ranking strategies, prompt engineering, and deployment insights drawn from China Mobile’s production experience.

Enterprise AIHybrid RetrievalPrompt Engineering
0 likes · 22 min read
Building an Enterprise‑Grade RAG 2.0 System: Architecture, Challenges, and Best Practices
DataFunSummit
DataFunSummit
Apr 22, 2026 · Artificial Intelligence

From Flawed RAG to Production‑Ready: Deep Dive into Scaling Retrieval‑Augmented Generation

This expert roundtable dissects why RAG often fails in production—low recall, hallucinations, cost overruns—and walks through concrete diagnostics, hybrid search designs, knowledge‑engineering tricks, GraphRAG and Agentic RAG advances, plus practical deployment, security, and cost‑optimization guidelines.

AI deploymentAgentic RAGHybrid Search
0 likes · 20 min read
From Flawed RAG to Production‑Ready: Deep Dive into Scaling Retrieval‑Augmented Generation
MeowKitty Programming
MeowKitty Programming
Apr 21, 2026 · Backend Development

2026 AI Priorities for Java Developers: Structured Output, RAG, and Observability

While many Java teams chase flashy AI demos and agents, the real 2026 focus has shifted to engineering concerns—ensuring model outputs reliably map to Java objects, integrating Retrieval‑Augmented Generation into robust data pipelines, and adding observability so AI services can be monitored and debugged like traditional back‑end components.

AILangChain4jRetrieval-Augmented Generation
0 likes · 7 min read
2026 AI Priorities for Java Developers: Structured Output, RAG, and Observability
AI Architect Hub
AI Architect Hub
Apr 20, 2026 · Artificial Intelligence

Why LLMs Need RAG: Overcoming Core Limitations and Building Scalable AI Solutions

This article analyzes the fundamental shortcomings of large language models for enterprise use, explains how Retrieval‑Augmented Generation (RAG) bridges those gaps through a detailed offline‑online workflow, and explores emerging trends that will shape the next generation of intelligent AI architectures.

AI architectureEnterprise AIFuture AI
0 likes · 10 min read
Why LLMs Need RAG: Overcoming Core Limitations and Building Scalable AI Solutions
Big Data and Microservices
Big Data and Microservices
Apr 20, 2026 · Artificial Intelligence

Why AI Hallucinates and How RAG Turns It into an Open‑Book Test

The article explains why large language models often fabricate facts, introduces Retrieval‑Augmented Generation (RAG) as a way to ground responses with external data, walks through its four‑step workflow, showcases practical use cases, and highlights the limitations and best practices for deploying RAG.

AIKnowledge BaseLLM
0 likes · 12 min read
Why AI Hallucinates and How RAG Turns It into an Open‑Book Test
AI Architect Hub
AI Architect Hub
Apr 19, 2026 · Artificial Intelligence

Mastering RAG: From Data Cleaning to Vector DBs in AI Applications

This article introduces the second stage of a large‑model application series, detailing the value of Retrieval‑Augmented Generation (RAG), its architecture, and a step‑by‑step outline covering data cleaning, text chunking, vectorization, vector‑DB selection, recall strategies, reranking, and prompt construction.

AILLMPrompt Engineering
0 likes · 4 min read
Mastering RAG: From Data Cleaning to Vector DBs in AI Applications
Su San Talks Tech
Su San Talks Tech
Apr 19, 2026 · Artificial Intelligence

Boost Enterprise RAG: Data Pipeline Tricks, Hybrid Search & Rerank

To make Retrieval‑Augmented Generation reliable in production, the article outlines five key engineering tactics—semantic chunking with metadata, hybrid vector‑keyword search, two‑stage retrieval with reranking, query rewriting and expansion, and dynamic result evaluation—each illustrated with concrete examples and code snippets.

AI engineeringHybrid SearchMetadata
0 likes · 10 min read
Boost Enterprise RAG: Data Pipeline Tricks, Hybrid Search & Rerank
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
Apr 17, 2026 · Artificial Intelligence

When RAG Retrieves the Right Docs but Still Answers Wrong: Insights from Saarland University (ACL 2026)

The article explains why conventional Retrieval‑Augmented Generation often produces incorrect answers despite retrieving relevant documents, introduces the Disco‑RAG framework that adds a structured reading step using argument trees and relation graphs, and shows how this three‑step approach dramatically improves performance on long‑document and ambiguous‑question benchmarks without any model training.

Disco-RAGRAGRetrieval-Augmented Generation
0 likes · 13 min read
When RAG Retrieves the Right Docs but Still Answers Wrong: Insights from Saarland University (ACL 2026)
DataFunSummit
DataFunSummit
Apr 17, 2026 · Artificial Intelligence

Why RAG Projects Fail: Real‑World Pitfalls and Proven Solutions

This article dissects the hype‑versus‑reality gap of Retrieval‑Augmented Generation in enterprises, exposing low recall, hallucinations, and cost overruns, then offers a systematic diagnosis, hybrid search, reranking, security controls, and advanced GraphRAG and Agentic RAG strategies to achieve reliable production deployments.

Enterprise AILLMRAG
0 likes · 17 min read
Why RAG Projects Fail: Real‑World Pitfalls and Proven Solutions
DataFunTalk
DataFunTalk
Apr 15, 2026 · Artificial Intelligence

Building a Production‑Ready RAG System for Enterprise Knowledge Work

This article analyzes the challenges and practical solutions of deploying Retrieval‑Augmented Generation (RAG) in an enterprise office setting, covering background problems, modular architecture, offline and online pipelines, hybrid retrieval, multi‑stage ranking, knowledge filtering, prompt engineering, and model selection to achieve accurate, reliable answers.

Enterprise AIHybrid RetrievalRAG
0 likes · 21 min read
Building a Production‑Ready RAG System for Enterprise Knowledge Work
IT Services Circle
IT Services Circle
Apr 14, 2026 · Artificial Intelligence

What Is RAG? A Complete Guide to Retrieval‑Augmented Generation for AI Engineers

This article explains Retrieval‑Augmented Generation (RAG), covering why large language models need external knowledge, the full offline‑and‑online workflow, document chunking, embedding evolution, vector database choices, multi‑path retrieval, evaluation metrics, hallucination types, and practical strategies to mitigate them.

AI evaluationEmbeddingRAG
0 likes · 55 min read
What Is RAG? A Complete Guide to Retrieval‑Augmented Generation for AI Engineers
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Apr 11, 2026 · Artificial Intelligence

Master AI Fundamentals: Tokens, Context Windows, Temperature, Hallucinations & RAG

This article breaks down five essential AI concepts—tokens, context windows, temperature settings, hallucinations, and retrieval‑augmented generation—explaining how they work, why they matter, and how to apply them effectively when building or using large language model applications.

AI FundamentalsRetrieval-Augmented Generationcontext window
0 likes · 12 min read
Master AI Fundamentals: Tokens, Context Windows, Temperature, Hallucinations & RAG
Bighead's Algorithm Notes
Bighead's Algorithm Notes
Apr 7, 2026 · Artificial Intelligence

AutoHypo-Fin: Tsinghua's Web-Mining Method to Auto-Generate and Backtest Market Hypotheses

AutoHypo‑Fin is an end‑to‑end framework that harvests large‑scale web financial data, extracts entities via large language models, builds a temporal knowledge graph, uses retrieval‑augmented generation and statistical backtesting to automatically create, test, and iteratively optimize trading hypotheses, achieving superior risk‑adjusted returns compared with baseline strategies in experiments from 2019‑2024.

AutoHypo-FinKnowledge GraphLLM
0 likes · 11 min read
AutoHypo-Fin: Tsinghua's Web-Mining Method to Auto-Generate and Backtest Market Hypotheses
IT Services Circle
IT Services Circle
Apr 6, 2026 · Artificial Intelligence

Mastering RAG Interview Questions: A Complete Retrieval Optimization Blueprint

This article breaks down the full RAG retrieval pipeline—from query understanding and rewriting, through hybrid retrieval and reranking, to chunking, context compression, and dynamic routing—providing concrete techniques, formulas, and performance metrics to help candidates ace interview questions on RAG systems.

Context CompressionHard Negative MiningHybrid Retrieval
0 likes · 16 min read
Mastering RAG Interview Questions: A Complete Retrieval Optimization Blueprint
DataFunSummit
DataFunSummit
Apr 1, 2026 · Artificial Intelligence

Why RAG Fails in Production and How to Fix It: Expert Insights

This article analyzes why Retrieval‑Augmented Generation (RAG) often underperforms in enterprise production, identifies eight common pitfalls—from document parsing to token costs—and offers a systematic roadmap of diagnostics, hybrid search, reranking, and deployment strategies presented by leading AI experts.

AIRAGRetrieval-Augmented Generation
0 likes · 18 min read
Why RAG Fails in Production and How to Fix It: Expert Insights
AI Step-by-Step
AI Step-by-Step
Mar 29, 2026 · Artificial Intelligence

How RAG Quickly Gives Your Agent Real Business Knowledge

The article explains why agents often lack business understanding, describes Retrieval‑Augmented Generation (RAG) as the fastest way to provide correct, up‑to‑date business context, outlines eight practical RAG patterns, and offers a step‑by‑step checklist for building enterprise‑ready agents.

AgentEnterprise AIGraphRAG
0 likes · 10 min read
How RAG Quickly Gives Your Agent Real Business Knowledge
Data Party THU
Data Party THU
Mar 23, 2026 · Artificial Intelligence

Boosting RAG Performance: Query Translation & Decomposition Techniques

The article explains two emerging RAG query‑optimization approaches—query translation and query decomposition—detailing fan‑out retrieval, reciprocal rank fusion, HyDE, step‑back prompting, and chain‑of‑thought retrieval, and shows how combining them can improve relevance and latency in LLM‑augmented systems.

LLMQuery OptimizationRAG
0 likes · 9 min read
Boosting RAG Performance: Query Translation & Decomposition Techniques
Woodpecker Software Testing
Woodpecker Software Testing
Mar 22, 2026 · Artificial Intelligence

How to Test Retrieval‑Augmented Generation Systems: Practical Strategies for 2024

This article explains why traditional API, assertion, and UI testing fail for Retrieval‑Augmented Generation (RAG) systems, and presents a four‑step, evidence‑driven testing framework—including golden test sets, dual‑track validation, chaos engineering, and continuous trust dashboards—to ensure factual reliability and operational robustness in real‑world deployments.

Chaos EngineeringFact CheckingLLM
0 likes · 8 min read
How to Test Retrieval‑Augmented Generation Systems: Practical Strategies for 2024
Data Party THU
Data Party THU
Mar 21, 2026 · Artificial Intelligence

Why Bigger Context Windows Hurt LLMs and How RAG Still Wins

The article explains that expanding LLM context windows leads to attention dilution and retrieval collapse, degrading answer quality, and argues that Retrieval‑Augmented Generation remains essential because it preserves signal density through focused retrieval and selective prompting.

AI architectureAttention DilutionLLM
0 likes · 8 min read
Why Bigger Context Windows Hurt LLMs and How RAG Still Wins
PaperAgent
PaperAgent
Mar 19, 2026 · Artificial Intelligence

How MDER‑DR Boosts Multi‑Hop KG QA with Entity‑Centric Summaries

The article presents the MDER‑DR two‑stage framework that tackles semantic loss in knowledge‑graph triple indexing by generating context‑aware entity summaries and using an LLM‑driven decompose‑parse retrieval loop, achieving up to 66% performance gains on multi‑hop question answering benchmarks.

Entity SummarizationKG QAKnowledge Graph
0 likes · 5 min read
How MDER‑DR Boosts Multi‑Hop KG QA with Entity‑Centric Summaries
Tech Freedom Circle
Tech Freedom Circle
Mar 19, 2026 · Artificial Intelligence

Failed Alibaba Interview: The 4 RAG Modules and 6 Design Principles You Need

The article dissects a failed Alibaba second‑round interview where the candidate answered only “vector‑search‑enhanced” for a RAG design, and then presents a systematic, four‑module RAG architecture together with six design principles, detailed indexing, query understanding, multi‑path recall, and context generation techniques to help candidates demonstrate comprehensive technical depth.

AI architectureDesign PrinciplesKnowledge Graph
0 likes · 22 min read
Failed Alibaba Interview: The 4 RAG Modules and 6 Design Principles You Need
Data STUDIO
Data STUDIO
Mar 9, 2026 · Artificial Intelligence

Boost RAG Accuracy from 60% to 94% with 11 Proven Strategies

This article dissects why naive Retrieval‑Augmented Generation (RAG) often yields only 60% accuracy, then presents eleven concrete ingestion, query, and hybrid techniques—complete with code samples, performance trade‑offs, and real‑world case studies—that together can raise RAG accuracy to 94% while outlining practical implementation roadmaps and common pitfalls.

EmbeddingKnowledge GraphLLM
0 likes · 31 min read
Boost RAG Accuracy from 60% to 94% with 11 Proven Strategies
DataFunSummit
DataFunSummit
Feb 25, 2026 · Artificial Intelligence

Why RAG Fails in Production and How to Fix It: Expert Insights

This article summarizes a DataFun‑hosted roundtable where leading AI experts dissect the gap between RAG’s promise and real‑world deployment, exposing low recall, hallucinations, and cost overruns, then present systematic diagnostics, evaluation metrics, hybrid search, and engineering best practices to reliably operationalize RAG in enterprise settings.

Enterprise AIHybrid SearchLLM
0 likes · 18 min read
Why RAG Fails in Production and How to Fix It: Expert Insights
Qborfy AI
Qborfy AI
Feb 18, 2026 · Artificial Intelligence

How Retrieval‑Augmented Generation (RAG) Supercharges LLM Answers – Complete Guide & Code

This article explains Retrieval‑Augmented Generation (RAG), detailing its offline knowledge‑base construction and online retrieval‑enhanced generation workflow, comparing it with traditional and fine‑tuned models, and providing step‑by‑step LangChain implementations, advanced techniques, and practical use‑case demos.

Embedding ModelsHybrid SearchLangChain
0 likes · 16 min read
How Retrieval‑Augmented Generation (RAG) Supercharges LLM Answers – Complete Guide & Code
DataFunTalk
DataFunTalk
Feb 11, 2026 · Artificial Intelligence

Why Most RAG Deployments Fail and How to Build a Production‑Ready RAG System

This round‑table dissects the gap between RAG’s hype and real‑world production, exposing common pitfalls such as low recall, hallucinations and cost overruns, and then delivers a systematic diagnostic framework, hybrid search strategies, fine‑tuning rules, and practical best‑practice roadmaps for building reliable enterprise RAG solutions.

Agentic RAGFine-tuningHybrid Search
0 likes · 20 min read
Why Most RAG Deployments Fail and How to Build a Production‑Ready RAG System
AI2ML AI to Machine Learning
AI2ML AI to Machine Learning
Feb 7, 2026 · Artificial Intelligence

Why the ‘Skills’ Approach Is the Third Major Compromise Shaping Enterprise AI in 2026

The article argues that embracing the Skills paradigm— a lightweight, low‑cost alternative to large‑scale model training—represents the third major compromise in the large‑model era, balancing reduced emergence and planning hallucinations against increased stability and engineering efficiency for enterprise AI deployments.

Enterprise AILarge Language ModelsMixture of Experts
0 likes · 8 min read
Why the ‘Skills’ Approach Is the Third Major Compromise Shaping Enterprise AI in 2026
Subtle Storm
Subtle Storm
Feb 2, 2026 · Artificial Intelligence

How AI Builds a Knowledge System: From Vector Representation to Retrieval‑Augmented Generation

The article explains how large language models compress vast data into vector‑based concept maps, outlines the three‑step process of representation, association, and generalization, and shows how alignment and Retrieval‑Augmented Generation can be used to build controllable, updatable knowledge systems for both personal learning and enterprise applications.

Artificial IntelligenceModel AlignmentRetrieval-Augmented Generation
0 likes · 6 min read
How AI Builds a Knowledge System: From Vector Representation to Retrieval‑Augmented Generation
Data STUDIO
Data STUDIO
Jan 27, 2026 · Artificial Intelligence

How Python RAG Architectures Can Tame Large‑Model Hallucinations: A Complete Guide to 9 Designs

This article explains why large‑language‑model hallucinations are risky, introduces Retrieval‑Augmented Generation (RAG) as a remedy, and walks through nine Python‑based RAG architectures—standard, conversational, corrective, adaptive, fusion, HyDE, self‑RAG, agentic, and graph RAG—detailing their workflows, code examples, strengths, weaknesses, and a decision‑making map for selecting the right design.

AI hallucinationLangChainLarge Language Models
0 likes · 29 min read
How Python RAG Architectures Can Tame Large‑Model Hallucinations: A Complete Guide to 9 Designs
PaperAgent
PaperAgent
Jan 13, 2026 · Artificial Intelligence

How C2LLM Redefines Code Retrieval with Attention‑Based Pooling

Introducing C2LLM, a contrastive code LLM series that replaces mean and EOS pooling with a multi‑head attention pooling module, achieving top scores on the MTEB‑Code benchmark across 12 tasks and demonstrating cost‑effective, high‑precision code retrieval for both production and AI agent applications.

Code EmbeddingMTEB-CodeRetrieval-Augmented Generation
0 likes · 8 min read
How C2LLM Redefines Code Retrieval with Attention‑Based Pooling
Sohu Tech Products
Sohu Tech Products
Jan 7, 2026 · Artificial Intelligence

Master Retrieval-Augmented Generation (RAG): Concepts, Benefits, Implementation

This article explains Retrieval‑Augmented Generation (RAG), its dual‑stage architecture that combines parametric LLM knowledge with external non‑parametric data, outlines its technical evolution, discusses why it outperforms pure LLMs, and provides a step‑by‑step guide with toolchain choices, evaluation metrics, and future challenges.

AIKnowledge BaseLLM
0 likes · 14 min read
Master Retrieval-Augmented Generation (RAG): Concepts, Benefits, Implementation
PaperAgent
PaperAgent
Jan 5, 2026 · Artificial Intelligence

How QuCo‑RAG Replaces Model Confidence with Objective Evidence to Cut Hallucinations

QuCo‑RAG introduces a dynamic retrieval‑augmented generation framework that quantifies uncertainty using pre‑training corpus statistics, replacing unreliable model confidence with objective frequency and co‑occurrence evidence, achieving millisecond‑level hallucination detection, superior multi‑hop QA performance, and cross‑model transferability across various LLMs.

Dynamic RetrievalLLMRetrieval-Augmented Generation
0 likes · 9 min read
How QuCo‑RAG Replaces Model Confidence with Objective Evidence to Cut Hallucinations
Mingyi World Elasticsearch
Mingyi World Elasticsearch
Dec 28, 2025 · Artificial Intelligence

Building an Elasticsearch‑Powered RAG Q&A System: Theory and Full Code Walkthrough

This article walks through the principles of Retrieval‑Augmented Generation (RAG) and provides a complete Python implementation using Elasticsearch, covering document chunking, semantic embedding, bulk indexing, hybrid BM25‑vector search, RRF result fusion, prompt design, LLM invocation, and a practical demo.

ElasticsearchHybrid SearchPrompt Engineering
0 likes · 9 min read
Building an Elasticsearch‑Powered RAG Q&A System: Theory and Full Code Walkthrough
Coder Life Journal
Coder Life Journal
Dec 14, 2025 · Artificial Intelligence

RAG Learning Journey Part 1: What Is Retrieval‑Augmented Generation?

This article explains Retrieval‑Augmented Generation (RAG), describing its definition, why it complements large language models, the end‑to‑end workflow, its four core components—embedding, vector database, retriever, generator—and the value it adds by providing up‑to‑date knowledge and reducing model hallucinations.

AIEmbeddingRAG
0 likes · 3 min read
RAG Learning Journey Part 1: What Is Retrieval‑Augmented Generation?
PaperAgent
PaperAgent
Dec 12, 2025 · Artificial Intelligence

How BookRAG Redefines Long-Document Retrieval with Hierarchical Indexing

BookRAG introduces a hierarchical, structure‑aware indexing method that combines tree‑based document representation with graph‑based entity linking and an agent‑driven retrieval pipeline, achieving up to 71.2% recall improvement on multimodal long‑document benchmarks while cutting token usage and latency dramatically.

Agent RetrievalLLMLong Document QA
0 likes · 7 min read
How BookRAG Redefines Long-Document Retrieval with Hierarchical Indexing
Open Source Tech Hub
Open Source Tech Hub
Dec 5, 2025 · Artificial Intelligence

From Neurons to GPT: A Complete Timeline of AI Evolution and Future Trends

This comprehensive article traces AI from its biological roots and early computers through the birth of artificial intelligence, the rise of machine learning, the emergence of large language models, multimodal agents, and finally explores current breakthroughs, practical applications, and future directions.

AgentsArtificial IntelligenceFine-tuning
0 likes · 39 min read
From Neurons to GPT: A Complete Timeline of AI Evolution and Future Trends
Architect's Guide
Architect's Guide
Nov 24, 2025 · Artificial Intelligence

Building Java LLM Applications with LangChain4j: A Hands‑On Guide

This tutorial walks through the fundamentals of large language models, prompt engineering, and word embeddings, then shows how to set up a LangChain‑based LLM stack in Java using LangChain4j, covering core modules, memory, retrieval, chains, agents, and complete code examples.

AI agentsLLMLangChain
0 likes · 15 min read
Building Java LLM Applications with LangChain4j: A Hands‑On Guide
JD Tech Talk
JD Tech Talk
Nov 21, 2025 · Artificial Intelligence

Mastering Chunking Strategies for Retrieval‑Augmented Generation

This article explains why effective chunking is crucial for RAG performance, compares seven major chunking strategies—including fixed‑size, semantic, recursive, document‑structure, agent‑driven, sentence, and paragraph methods—and offers practical guidance on selecting and optimizing chunks for real‑world AI applications.

AIChunkingRAG
0 likes · 10 min read
Mastering Chunking Strategies for Retrieval‑Augmented Generation
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Nov 20, 2025 · Artificial Intelligence

How to Build a Quantifiable Data Quality Framework for Dynamic Incremental RAG

This article explains why static RAG metrics don’t apply to dynamic pipelines, introduces five essential dimensions—Parseability, Deduplication, Relevance, Chunk Quality, and Freshness—and shows how to combine them into a weighted score that enables monitoring, alerts, and continuous improvement of dynamic RAG systems.

Dynamic RAGMonitoringRetrieval-Augmented Generation
0 likes · 10 min read
How to Build a Quantifiable Data Quality Framework for Dynamic Incremental RAG
Data Thinking Notes
Data Thinking Notes
Nov 16, 2025 · Artificial Intelligence

How AI Agents Transform Automation: Architecture, Challenges & Future Trends

This comprehensive overview examines AI agents powered by large language models, detailing their definition, core components, architectural patterns, key technologies such as prompt engineering and retrieval‑augmented generation, diverse application domains, current challenges, security solutions, and emerging research directions.

Large Language ModelsPrompt EngineeringRetrieval-Augmented Generation
0 likes · 81 min read
How AI Agents Transform Automation: Architecture, Challenges & Future Trends
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Nov 4, 2025 · Artificial Intelligence

How Alibaba Cloud’s PAI Powers Cutting‑Edge LLM Research at EMNLP 2025

EMNLP 2025 in Suzhou will feature Alibaba Cloud’s AI platform PAI presenting four accepted papers on knowledge distillation, small‑model reasoning, distilled reasoning models, and an automated RAG benchmark framework, alongside exhibition demos, networking events, and recruitment opportunities for AI talent.

AI platformEMNLP 2025Large Language Models
0 likes · 10 min read
How Alibaba Cloud’s PAI Powers Cutting‑Edge LLM Research at EMNLP 2025
DataFunSummit
DataFunSummit
Oct 30, 2025 · Artificial Intelligence

How Multimodal Large Models Are Revolutionizing Document Processing and OCR

This article explores how the explosion of unstructured data exposes the limits of traditional OCR and shows how emerging multimodal large language models provide end‑to‑end document understanding, reduce pipeline complexity, cut training costs, enable hybrid retrieval‑augmented generation, and drive real‑world industry deployments.

AIDocument processingMultimodal
0 likes · 28 min read
How Multimodal Large Models Are Revolutionizing Document Processing and OCR
Xuanwu Backend Tech Stack
Xuanwu Backend Tech Stack
Oct 22, 2025 · Artificial Intelligence

How Rerank Transforms Retrieval‑Augmented Generation for Accurate AI Answers

This article explains the limitations of basic Retrieval‑Augmented Generation (RAG), introduces Rerank technology as a two‑step refinement process, compares dual‑encoder and cross‑encoder methods, and reviews popular Rerank models to help developers build more precise AI‑driven retrieval systems.

Artificial IntelligenceRAGRerank
0 likes · 10 min read
How Rerank Transforms Retrieval‑Augmented Generation for Accurate AI Answers
JD Tech Talk
JD Tech Talk
Oct 21, 2025 · Backend Development

How Backend Engineers Are Breaking Through AI with RAG Architectures

This article details a backend developer's two‑year AI journey, the challenges of rapid model advances, and how applying microservice principles to Retrieval‑Augmented Generation (RAG) creates a scalable, multi‑agent platform for insurance knowledge, memory, and intelligent agents.

Backend AIKnowledge BaseRAG
0 likes · 11 min read
How Backend Engineers Are Breaking Through AI with RAG Architectures
AI Large Model Application Practice
AI Large Model Application Practice
Oct 13, 2025 · Artificial Intelligence

How to Tame LLM Agents: Proven Strategies to Reduce Uncertainty and Boost Reliability

This article outlines practical techniques—including prompt engineering, domain fine‑tuning, retrieval‑augmented generation, structured outputs, workflow constraints, model parameter control, behavior rules, risk‑based AI participation, and comprehensive governance—to curb the unpredictability of large language model agents in enterprise settings.

AI AgentAI governanceLLM
0 likes · 18 min read
How to Tame LLM Agents: Proven Strategies to Reduce Uncertainty and Boost Reliability
DataFunSummit
DataFunSummit
Oct 9, 2025 · Artificial Intelligence

Why AI Coding Agents Still Struggle: Context Limits, Knowledge Gaps, and the Road to Human‑Like Assistants

This talk examines the core challenges facing AI coding agents—limited context windows, knowledge accumulation, and software‑engineering complexity—while outlining practical solutions such as context providing, RAG, fine‑tuning, online learning, feedback loops, and multi‑agent collaboration to move toward truly human‑like, continuously learning coding assistants.

AI codingCoding AgentRetrieval-Augmented Generation
0 likes · 24 min read
Why AI Coding Agents Still Struggle: Context Limits, Knowledge Gaps, and the Road to Human‑Like Assistants
JD Cloud Developers
JD Cloud Developers
Sep 28, 2025 · Artificial Intelligence

What Is Retrieval‑Augmented Generation (RAG) and How Does It Work?

This article explains Retrieval‑Augmented Generation (RAG), an AI framework that combines traditional information retrieval with large language models, covering its core workflow—from knowledge preparation, data cleaning, and metadata extraction to query preprocessing, vector retrieval, reranking, information integration, and final LLM generation, while also reviewing common embedding models and vector databases.

Artificial IntelligenceLLMRAG
0 likes · 13 min read
What Is Retrieval‑Augmented Generation (RAG) and How Does It Work?
Tech Freedom Circle
Tech Freedom Circle
Sep 25, 2025 · Artificial Intelligence

How RAGFlow’s Agent Engine Turns Retrieval into a Problem‑Solving AI

This article explains how RAGFlow upgrades a traditional RAG system from a passive question‑answer engine to an active problem‑solving agent by integrating the ReAct reasoning‑action‑observation loop, a visual canvas workflow, and a modular component‑tool ecosystem, with concrete Python implementations and code examples.

AI agentsPythonReAct
0 likes · 16 min read
How RAGFlow’s Agent Engine Turns Retrieval into a Problem‑Solving AI
Tech Freedom Circle
Tech Freedom Circle
Sep 25, 2025 · Artificial Intelligence

RAGFlow Primer Part 1: Introduction and Concept Deep Dive

This article provides a comprehensive technical overview of RAGFlow, an industrial‑grade Retrieval‑Augmented Generation platform, detailing its architecture, core components such as DeepDoc, intelligent chunking, embedding integration, multi‑stage retrieval, and agent workflow, while comparing it with traditional RAG shortcomings.

DeepDocIntelligent ChunkingKnowledge Base
0 likes · 32 min read
RAGFlow Primer Part 1: Introduction and Concept Deep Dive