Tagged articles

RAG

1179 articles · Page 1 of 12
AI Engineer Programming
AI Engineer Programming
Aug 18, 2026 · Artificial Intelligence

Does Reducing Embedding Dimensions Break RAG Retrieval? Practical Trade‑offs and Tests

Vector dimensionality reduction in RAG retrieval compresses information and can degrade recall, NDCG or latency, but the impact depends on task, data distribution, and model architecture, so practitioners must measure cost, speed and accuracy on their own datasets using metrics such as Recall@K, Precision@K and NDCG@K.

ANNMRLPCA
0 likes · 15 min read
Does Reducing Embedding Dimensions Break RAG Retrieval? Practical Trade‑offs and Tests
DataFunTalk
DataFunTalk
Aug 17, 2026 · Artificial Intelligence

Why Unstructured Data—80% of Enterprise Knowledge—Blocks AI Adoption

Around 80% of enterprise knowledge resides in unstructured documents, and extracting accurate, structured information from complex layouts, tables, and multimodal content remains a low‑accuracy, engineering‑heavy hurdle that can cripple downstream RAG, knowledge‑base, and agent deployments.

Enterprise AIRAGdocument parsing
0 likes · 6 min read
Why Unstructured Data—80% of Enterprise Knowledge—Blocks AI Adoption
Data Party THU
Data Party THU
Aug 15, 2026 · Artificial Intelligence

Why Naive Text Chunking Breaks RAG and How to Build a Better Alternative

The article explains how simple character‑ or page‑based chunking destroys the spatial and semantic relationships of tables, figures, formulas and headings in PDFs, proposes a structure‑aware multimodal RAG pipeline that restores layout via layout detection, visual description generation, modal enhancement and cross‑encoder re‑ranking, and shows that these steps dramatically improve retrieval quality, especially for visual queries.

MultimodalRAGcross-encoder
0 likes · 17 min read
Why Naive Text Chunking Breaks RAG and How to Build a Better Alternative
Senior Tony
Senior Tony
Aug 15, 2026 · Artificial Intelligence

How We Boosted RAG Recall by 15% with Practical Query Optimization Techniques

The article details how a 15% recall@K improvement was achieved in a RAG system by building an offline test set and applying six concrete query‑optimization methods—including rewrite, HyDE, multi‑query, query splitting, contextual completion, and keyword enhancement—while discussing their trade‑offs and implementation tips.

Artificial IntelligenceHyDEKeyword Enhancement
0 likes · 9 min read
How We Boosted RAG Recall by 15% with Practical Query Optimization Techniques
Java Architecture Diary
Java Architecture Diary
Aug 14, 2026 · Artificial Intelligence

Use JVM Native Vector API to Remove an External Vector Store in RAG

This guide shows how to replace external vector databases like Milvus or Qdrant with the JVM’s incubating Vector API and the integrallis/vectors library, providing built‑in distance kernels, indexing (FLAT, HNSW, IVF), and persistence, and demonstrates integration with Spring AI and LangChain4j through concise code examples and required JVM flags.

JVM Vector APILangChain4jRAG
0 likes · 7 min read
Use JVM Native Vector API to Remove an External Vector Store in RAG
Java Companion
Java Companion
Aug 12, 2026 · Industry Insights

Why Java Basics Disappear from Interviews: RAG and Agents Now Dominate AI Jobs

Recent interview trends show a sharp shift from traditional Java topics to AI‑focused questions about Retrieval‑Augmented Generation and Agent design, with data revealing AI roles topping demand and salary charts while companies struggle to find talent capable of deploying large models in real business contexts.

AI interview trendsAI job marketAI training
0 likes · 4 min read
Why Java Basics Disappear from Interviews: RAG and Agents Now Dominate AI Jobs
DataFunSummit
DataFunSummit
Aug 11, 2026 · Artificial Intelligence

Beyond RAG: Using Skill + CLI to Build Persistent Agent Knowledge

The article argues that traditional Retrieval‑Augmented Generation (RAG) discards experience after each query, and proposes RDS ContextDB’s Skill‑defined abilities and CLI‑driven paths as a way for agents to continuously capture, reuse, and evolve business knowledge, with a live demo announced for Agentic DB Day.

AI agentsCLIContextDB
0 likes · 2 min read
Beyond RAG: Using Skill + CLI to Build Persistent Agent Knowledge
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Aug 9, 2026 · Artificial Intelligence

Why Ontology Can Be More Precise Than RAG While Requiring Less Engineering Effort?

The article compares RAG and ontology‑based knowledge graphs, showing that although both appear simple in demos, ontology often delivers higher precision with greater engineering cost, and argues that true simplification comes from architectural trade‑offs rather than choosing a supposedly "simple" technology.

AIComplexityEnterprise Knowledge Management
0 likes · 9 min read
Why Ontology Can Be More Precise Than RAG While Requiring Less Engineering Effort?
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
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Aug 8, 2026 · Artificial Intelligence

AI Hallucinations in Text-to-SQL: Four Common Pitfalls and How to Mitigate Them

Large language models generate SQL by predicting tokens rather than truly understanding databases, leading to four categories of hallucinations—factual, logical, instructional, and knowledge‑boundary—each with concrete examples, and the article outlines five practical strategies such as schema‑pre‑alignment, execute‑then‑rerank, compiler feedback, real‑time schema sync, and human verification to curb these errors.

AI hallucinationLarge Language ModelsRAG
0 likes · 9 min read
AI Hallucinations in Text-to-SQL: Four Common Pitfalls and How to Mitigate Them
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Aug 7, 2026 · Artificial Intelligence

Why RAG Misses, Agents Hallucinate, Code Stalls—Ontology as the Missing Semantic Layer

The article argues that the root cause of common AI deployment problems—poor RAG relevance, agent hallucinations, and brittle graph‑query code—is the lack of a unified semantic layer, and demonstrates how ontology engineering can supply a reasoning‑driven, adaptable contract that aligns concepts, constrains actions, and decouples business rules from implementation.

AI architectureAgentGraph Database
0 likes · 9 min read
Why RAG Misses, Agents Hallucinate, Code Stalls—Ontology as the Missing Semantic Layer
Architecture Digest
Architecture Digest
Aug 7, 2026 · Artificial Intelligence

What Do Large AI Models Actually Learn During Pre‑training?

The article explains that large‑model pre‑training is fundamentally a next‑word prediction task that forces the model to compress massive text corpora, discover statistical regularities, build semantic representations, and, at sufficient scale, exhibit emergent abilities, with practical implications for model selection and AI system design.

AI AlignmentLarge Language ModelsRAG
0 likes · 12 min read
What Do Large AI Models Actually Learn During Pre‑training?
Java Companion
Java Companion
Aug 7, 2026 · Operations

Why pdf-inspector Has Earned 11.7k Stars on AI‑Heavy GitHub

The article reviews Firecrawl's Rust‑based pdf‑inspector, explaining how it quickly classifies PDFs, extracts text with layout information, converts them to structured Markdown, and outperforms competing tools in benchmarks, making it ideal for large‑scale PDF processing and RAG pipelines.

Markdown conversionOCR avoidancePDF extraction
0 likes · 10 min read
Why pdf-inspector Has Earned 11.7k Stars on AI‑Heavy GitHub
SpringMeng
SpringMeng
Aug 6, 2026 · Artificial Intelligence

A Powerful Three‑Tier Travel App Powered by AI, LangChain4j, and Collaborative Filtering

This article introduces a three‑endpoint travel system (mini‑program, web front‑end, and back‑end) that integrates Java Spring Boot, Vue 3, LangChain4j, DeepSeek, Ollama embeddings, and Mahout‑based collaborative filtering to provide AI‑driven recommendations and a RAG‑enhanced chat assistant.

AICollaborative FilteringLangChain4j
0 likes · 7 min read
A Powerful Three‑Tier Travel App Powered by AI, LangChain4j, and Collaborative Filtering
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Aug 5, 2026 · Artificial Intelligence

Why Ontology Stays Cold While RAG Is Limited to Q&A and Basic Reasoning

RAG can only retrieve and generate answers, lacking causal reasoning, cross‑system linking, and logical consistency, so it suits low‑risk use cases, while ontology offers rigorous, cross‑domain reasoning but demands costly, time‑intensive development that investors deem too distant from cash‑flow needs, explaining its muted market hype.

AI StrategyEnterprise AIKnowledge Graph
0 likes · 12 min read
Why Ontology Stays Cold While RAG Is Limited to Q&A and Basic Reasoning
TechVision Expert Circle
TechVision Expert Circle
Aug 4, 2026 · Industry Insights

Why Tech Giants Are Cutting Jobs While Spending Billions on AI

In the first half of 2026, major technology companies eliminated over 180,000 positions yet poured more than $320 billion into AI infrastructure, a shift the article dissects by detailing the task‑level automation logic, the four‑layer AI architecture, real‑world deployment cases, and the limits of current AI replacement.

AI adoptionAI infrastructureEnterprise Automation
0 likes · 13 min read
Why Tech Giants Are Cutting Jobs While Spending Billions on AI
Xike
Xike
Aug 4, 2026 · Operations

How We Fixed the AI‑Powered xi‑ops Ops Platform’s Critical Pitfalls

This article walks through the security and reliability pitfalls encountered when integrating large language models into the xi‑ops open‑source operations platform—covering unsafe SQL generation, unauthorized SSH actions, knowledge‑base hallucinations, prompt‑engineered bypasses, and configuration sync issues—and explains the concrete engineering safeguards that were implemented to close each gap.

AI opsLLMMCP
0 likes · 21 min read
How We Fixed the AI‑Powered xi‑ops Ops Platform’s Critical Pitfalls
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Aug 4, 2026 · Artificial Intelligence

Why Palantir’s Ontology‑Driven AI Beats Traditional RAG 1.0

The article analyzes how Palantir’s neuro‑symbolic, ontology‑based AI platform overcomes the fragmentation, broken reasoning chains, and lack of explainability of conventional RAG systems, delivering semantic modeling, auditable multi‑step reasoning, and dynamic business adaptation for enterprise decision‑making.

Enterprise AIKnowledge GraphNeuro‑Symbolic AI
0 likes · 9 min read
Why Palantir’s Ontology‑Driven AI Beats Traditional RAG 1.0
AI Large Model Application Practice
AI Large Model Application Practice
Aug 3, 2026 · Artificial Intelligence

Deep Dive into LLM Wiki Engineering: AI Coding, Obsidian Integration, and RAG Collaboration

This article explains how to build and maintain an LLM‑powered knowledge base (LLM Wiki) for AI coding agents, shows practical workflows using Obsidian and custom agents, and compares the governance‑focused Wiki approach with retrieval‑augmented generation, highlighting trade‑offs, metadata design, and integration patterns.

AI codingAgentKnowledge Management
0 likes · 16 min read
Deep Dive into LLM Wiki Engineering: AI Coding, Obsidian Integration, and RAG Collaboration
FunTester
FunTester
Aug 2, 2026 · Artificial Intelligence

Testing RAG Apps: Dual Gates for Performance and Answer Quality

This article explains how to combine k6 load testing with DeepEval LLM evaluation to create two independent gates—one measuring latency and token flow, the other checking faithfulness and relevance—so that RAG applications can detect performance regressions and hallucinations before reaching production.

CI/CDDeepEvalK6
0 likes · 15 min read
Testing RAG Apps: Dual Gates for Performance and Answer Quality
Raymond Ops
Raymond Ops
Aug 2, 2026 · Artificial Intelligence

Why Your RAG Falls Short and How to Fix It: Common Pitfalls and Proven Optimizations

This article dissects why Retrieval‑Augmented Generation pipelines often underperform, examines root causes such as embedding model choice, chunking strategy, hybrid retrieval, and reranking, and provides concrete code samples, evaluation metrics, and step‑by‑step troubleshooting to dramatically improve results.

ChunkingEmbeddingHybrid Retrieval
0 likes · 18 min read
Why Your RAG Falls Short and How to Fix It: Common Pitfalls and Proven Optimizations
DataFunTalk
DataFunTalk
Aug 2, 2026 · Artificial Intelligence

Exploring Multimodal GraphRAG: Combining Document Intelligence, Knowledge Graphs, and Large Models

This article provides a detailed technical walkthrough of multimodal GraphRAG, covering document parsing pipelines, layout analysis, OCR‑based and OCR‑free approaches, knowledge‑graph integration, multimodal indexing, retrieval strategies, and a comparative analysis of RAG, GraphRAG, and KG‑QA solutions.

AIGraphRAGKnowledge Graph
0 likes · 23 min read
Exploring Multimodal GraphRAG: Combining Document Intelligence, Knowledge Graphs, and Large Models
AI Engineer Programming
AI Engineer Programming
Aug 2, 2026 · Artificial Intelligence

Comprehensive Cost Assessment of End-to-End RAG Systems

This report breaks down production‑grade Retrieval‑Augmented Generation (RAG) system costs into five modules—LLM inference, vector database, embedding, bandwidth, and infrastructure—revealing that model choice drives over 40% of expenses, quantisation can halve vector costs, and multimodal storage may outpace vector database spending.

EmbeddingLLM inferenceMultimodal
0 likes · 14 min read
Comprehensive Cost Assessment of End-to-End RAG Systems
Architects' Tech Alliance
Architects' Tech Alliance
Aug 2, 2026 · Industry Insights

Comprehensive Global AI Agent Catalog 2026 – Full Tool List and Ecosystem Analysis

This article systematically classifies and summarizes the worldwide AI agent ecosystem in 2026, covering general‑purpose agents, development platforms, production‑grade agents, vertical industry solutions, and emerging trends such as MCP standardization, open‑source proliferation, multi‑agent collaboration, end‑to‑end automation, and domestic substitution, while providing concrete product examples and strategic insights for developers and enterprises.

AI EcosystemAutomationMCP
0 likes · 35 min read
Comprehensive Global AI Agent Catalog 2026 – Full Tool List and Ecosystem Analysis
Linyb Geek Road
Linyb Geek Road
Jul 29, 2026 · Artificial Intelligence

Why Adding More Documents Can Degrade RAG Answers

The article explains that stuffing a RAG system with many overlapping or conflicting documents consumes tokens, slows responses, and introduces noise that prevents the model from correctly using the most relevant evidence, ultimately worsening answer quality.

Context CompressionEvidence RankingLLM
0 likes · 14 min read
Why Adding More Documents Can Degrade RAG Answers
Linyb Geek Road
Linyb Geek Road
Jul 29, 2026 · Artificial Intelligence

How to Prevent RAG from Leaking Confidential Company Data

The article explains why Retrieval‑Augmented Generation (RAG) can unintentionally expose sensitive corporate documents and provides a step‑by‑step security framework—including metadata design, pre‑filter enforcement, access‑control models, safe caching, logging practices, and comprehensive testing—to ensure that only authorized users ever see protected content.

ABACMetadataRAG
0 likes · 14 min read
How to Prevent RAG from Leaking Confidential Company Data
DataFunSummit
DataFunSummit
Jul 28, 2026 · Artificial Intelligence

Designing Next‑Gen Recommendation and Search with Multi‑Agent AI Architecture

The article reviews a series of technical case studies—including Alibaba Cloud AI Search's Agentic RAG, Baidu's GRAB generative ranking, Huawei Noah's LLM‑enhanced recommendation, and Elasticsearch vector RAG—showing how multi‑agent AI architectures address high‑concurrency, multimodal, and multi‑hop query challenges while delivering measurable performance gains.

AI agentsAlibaba Cloud AI SearchBaidu GRAB
0 likes · 6 min read
Designing Next‑Gen Recommendation and Search with Multi‑Agent AI Architecture
DataFunSummit
DataFunSummit
Jul 27, 2026 · Artificial Intelligence

Why Do Long‑Horizon AI Agents Still Use the Wrong Memories?

Adding memory to agents is now straightforward, but when agents run for weeks across many interactions, the real challenge shifts from merely retrieving past data to determining which past information remains valid, how to manage its lifecycle, and how to govern cost, updates, and deletion, as highlighted by Oracle's technical report and benchmark evaluations.

Agent MemoryEnterprise AILong-Horizon AI
0 likes · 14 min read
Why Do Long‑Horizon AI Agents Still Use the Wrong Memories?
AI Large Model Application Practice
AI Large Model Application Practice
Jul 27, 2026 · Artificial Intelligence

Deep Dive: Building Reliable Enterprise Agent Knowledge Bases with LLM Wiki & Google OKF

The article analyzes why traditional RAG pipelines struggle with reliable, exploratory queries, introduces LLM Wiki as a method for structuring raw materials into a navigable knowledge map, explains Google’s Open Knowledge Format (OKF) as an interoperable markdown specification, and outlines a six‑step agent workflow for creating and maintaining enterprise knowledge bundles.

AgentGoogle OKFKnowledge Base
0 likes · 12 min read
Deep Dive: Building Reliable Enterprise Agent Knowledge Bases with LLM Wiki & Google OKF
Linyb Geek Road
Linyb Geek Road
Jul 27, 2026 · Artificial Intelligence

Why RAG Misses Casual User Questions and How to Optimize Retrieval

Real users ask informal, incomplete questions that often miss the right documents, so the article classifies common failure types, explains three query‑optimization techniques—Query Rewrite, Multi‑Query, and HyDE—provides concrete prompts, code snippets, selection guidelines, evaluation metrics, and practical deployment pitfalls.

HyDELLM RetrievalMulti-Query
0 likes · 14 min read
Why RAG Misses Casual User Questions and How to Optimize Retrieval
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Jul 23, 2026 · Artificial Intelligence

How to Prevent RAG from Hallucinating When No Answer Exists – Beyond Simple Similarity Thresholds

The article explains why a plain similarity‑threshold check cannot reliably stop Retrieval‑Augmented Generation from fabricating answers, introduces a four‑stage evidence‑control framework, details how to calibrate thresholds with balanced positive and negative samples, and outlines concrete actions for handling insufficient evidence.

LLMRAGRetrieval
0 likes · 21 min read
How to Prevent RAG from Hallucinating When No Answer Exists – Beyond Simple Similarity Thresholds
DeWu Technology
DeWu Technology
Jul 22, 2026 · Artificial Intelligence

Understanding RAG: Chunking, Embedding, Similarity, HNSW and Multi‑Path Retrieval

This article explains why Retrieval‑Augmented Generation is needed, walks through the offline and online pipeline, details knowledge sources, embedding models, chunking strategies, similarity metrics, the HNSW index, multi‑path recall, RRF fusion and cross‑encoder reranking, and summarizes practical takeaways for building effective RAG systems.

ChunkingEmbeddingHNSW
0 likes · 36 min read
Understanding RAG: Chunking, Embedding, Similarity, HNSW and Multi‑Path Retrieval
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Jul 22, 2026 · Artificial Intelligence

How to Handle Long Conversation History: Beyond Full Prompt or Recent Rounds

The article explains that effective conversation memory for LLMs requires classifying information into static knowledge, short‑term context, and long‑term memory, defining a full lifecycle for each entry, and implementing strict storage, retrieval, update, and deletion policies rather than simply concatenating all history or keeping only the latest turns.

LLMPrompt EngineeringRAG
0 likes · 24 min read
How to Handle Long Conversation History: Beyond Full Prompt or Recent Rounds
ThinkingAgent
ThinkingAgent
Jul 22, 2026 · Artificial Intelligence

Final Chapter: Cutting‑Edge DevEx to Lower AI Development Barriers

The article presents a comprehensive analysis of AI developer experience (DevEx), detailing why traditional DevEx falls short for LLM‑driven applications, describing a seven‑component platform that spans Playground, Trace replay, Prompt diff, RAG debugging, Eval dashboards, SDK/CLI, and scaffolding templates, and offering concrete architecture, code, metric baselines, framework comparisons, and best‑practice recommendations for enterprise adoption.

AIDevExEval
0 likes · 30 min read
Final Chapter: Cutting‑Edge DevEx to Lower AI Development Barriers
DataFunTalk
DataFunTalk
Jul 21, 2026 · Artificial Intelligence

Exploring Multimodal GraphRAG: Combining Document Intelligence, Knowledge Graphs, and Large Models

This article presents a detailed technical analysis of multimodal GraphRAG, covering document‑intelligence parsing pipelines, multimodal graph indexing, retrieval generation flows, the role of knowledge graphs in chunk association, comparative evaluations of RAG, GraphRAG and KG‑QA, and practical takeaways for building efficient RAG solutions.

GraphRAGKnowledge GraphLarge Language Models
0 likes · 25 min read
Exploring Multimodal GraphRAG: Combining Document Intelligence, Knowledge Graphs, and Large Models
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Jul 21, 2026 · Artificial Intelligence

How to Decompose a Production‑Ready RAG System for Interview Success

The article outlines a production‑ready RAG architecture by separating offline ingestion and online query pipelines, detailing nine ingestion steps, online request flow, data storage responsibilities, failure‑handling, monitoring, and acceptance criteria, all illustrated with concrete examples and traceable state machines.

Failure handlingMonitoringRAG
0 likes · 29 min read
How to Decompose a Production‑Ready RAG System for Interview Success
AI Illustrated Series
AI Illustrated Series
Jul 20, 2026 · Artificial Intelligence

RAG Basics: Indexing and Query Phases Explained for Interviews

The article breaks down Retrieval‑Augmented Generation into offline indexing (document chunking, embedding, vector storage) and online query (question embedding, similarity search, augmented generation), highlights retrieval accuracy as the main bottleneck, and shows practical use cases such as internal knowledge bases and product documentation assistants.

AI InterviewEmbeddingRAG
0 likes · 5 min read
RAG Basics: Indexing and Query Phases Explained for Interviews
Java Companion
Java Companion
Jul 19, 2026 · Artificial Intelligence

Explore 100+ Ready‑to‑Run AI Apps in the 124k‑Star Awesome‑LLM‑Apps Repo

The open‑source “awesome‑llm‑apps” repository, which has amassed over 124,000 GitHub stars, contains more than a hundred fully functional AI agents and RAG projects—each a complete, runnable example that can be cloned, dependencies installed, and a model key added to start experimenting immediately, though production use still requires additional work.

AI agentsGitHubLLM
0 likes · 9 min read
Explore 100+ Ready‑to‑Run AI Apps in the 124k‑Star Awesome‑LLM‑Apps Repo
AI Architecture Path
AI Architecture Path
Jul 19, 2026 · Artificial Intelligence

DeepTutor: 27K‑Star Open‑Source AI Tutor with Agent‑Native Architecture and Auditable Memory

The article critiques common AI learning tools for providing only answers, losing context, and risking data privacy, then presents DeepTutor—a locally deployable, open‑source AI tutor that uses a unified Agent‑Native runtime, double‑loop reasoning, three‑layer auditable memory, and a full offline learning loop covering study, practice, testing, research, and note‑taking.

AI tutoringAgent ArchitectureAuditable memory
0 likes · 17 min read
DeepTutor: 27K‑Star Open‑Source AI Tutor with Agent‑Native Architecture and Auditable Memory
Ray's Galactic Tech
Ray's Galactic Tech
Jul 18, 2026 · R&D Management

Stop Treating 22 Agent Hacks as a Checklist: A Practical Roadmap for Agentic Engineering

The article analyzes why AI coding agents succeed in simple tasks but falter on cross‑module work, argues that the core issue is missing state management, and proposes a step‑by‑step evolution—from extracting plans to multi‑agent governance—to make Agentic Engineering production‑ready.

AI agentsAgentic EngineeringPlan Management
0 likes · 19 min read
Stop Treating 22 Agent Hacks as a Checklist: A Practical Roadmap for Agentic Engineering
Architecture and Beyond
Architecture and Beyond
Jul 18, 2026 · Artificial Intelligence

New RAG Approaches: Exploring SAG and OpenViking

The article analyzes two emerging RAG strategies—SAG, which rebuilds relational structure with dynamic SQL hyperedges, and OpenViking, which treats agent context as a virtual file system—detailing their architectures, benchmarks, limitations, and guidance on when to adopt each.

Knowledge RetrievalLLMOpenViking
0 likes · 13 min read
New RAG Approaches: Exploring SAG and OpenViking
TechVision Expert Circle
TechVision Expert Circle
Jul 17, 2026 · Artificial Intelligence

Building Trustworthy AI Systems: Core Dimensions and Practical Solutions

The article outlines a comprehensive engineering approach for trustworthy AI, detailing five measurable dimensions—safety, reliability, explainability, privacy, and fairness—along with architecture design, input/output safeguards, hallucination mitigation, monitoring metrics, human‑in‑the‑loop strategies, and real‑world trade‑off recommendations.

AI safetyExplainabilityLLM engineering
0 likes · 13 min read
Building Trustworthy AI Systems: Core Dimensions and Practical Solutions
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
Ray's Galactic Tech
Ray's Galactic Tech
Jul 16, 2026 · Artificial Intelligence

K8s, Kafka, Nacos Agent Platform to Prevent Token Bankruptcy and Skill Avalanches

The article details how a production‑grade Agent platform built on Kubernetes, Kafka, and Nacos addresses token budget overruns, uncontrolled skill execution, and RAG hallucinations by introducing a four‑layer runtime architecture, token pre‑allocation, explicit state management, dynamic governance policies, and robust skill specifications.

KafkaKubernetesLLM agents
0 likes · 32 min read
K8s, Kafka, Nacos Agent Platform to Prevent Token Bankruptcy and Skill Avalanches
Ray's Galactic Tech
Ray's Galactic Tech
Jul 15, 2026 · Artificial Intelligence

Scalable Knowledge Base with High‑Concurrency Crawling and Vector Search

The article explains why a production‑grade enterprise knowledge base requires more than just dumping PDFs into a vector store, detailing a distributed, event‑driven architecture with separate collection, processing, retrieval, and governance layers that handle high‑concurrency crawling, real‑time cleaning, versioned indexing, permission filtering, and feedback‑driven updates.

Data PipelineKnowledge BaseRAG
0 likes · 39 min read
Scalable Knowledge Base with High‑Concurrency Crawling and Vector Search
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
Java Companion
Java Companion
Jul 15, 2026 · Industry Insights

2026 AI Job Market Booms: Positions Up 12×, Salaries 26% Higher – RAG + Agent Skills Are the New Hiring Edge

Data from 脉脉 shows AI positions in 2026 have grown about twelve‑fold year‑over‑year, now accounting for 26.23% of new‑economy jobs with average monthly salaries 26% above peers, while traditional software demand falls 25% and large‑model application roles surge, prompting a training push on RAG and Agent technologies.

AIAgentRAG
0 likes · 3 min read
2026 AI Job Market Booms: Positions Up 12×, Salaries 26% Higher – RAG + Agent Skills Are the New Hiring Edge
dbaplus Community
dbaplus Community
Jul 14, 2026 · Artificial Intelligence

Achieving 85%+ Accuracy: Qunar’s SQL Agent for Intelligent Data Retrieval and Efficiency Gains

The article details Qunar’s AI‑driven SQL Agent project, describing how data‑governance, multi‑agent architecture, prompt design, and RAG techniques were combined to reduce data‑access latency, raise query accuracy above 85%, and streamline the end‑to‑end data‑service workflow for business users.

AI operationsData GovernancePrompt Engineering
0 likes · 24 min read
Achieving 85%+ Accuracy: Qunar’s SQL Agent for Intelligent Data Retrieval and Efficiency Gains
Ray's Galactic Tech
Ray's Galactic Tech
Jul 14, 2026 · Backend Development

How We Built a RAG‑Powered Knowledge Base That Actually Understands Source Code

The article explains why traditional FAQs fail for complex production issues, then details the design of a retrieval‑augmented generation knowledge engine that ingests source code, configuration, design docs, and incident reports, offering version‑consistent, permission‑aware answers with evidence‑backed citations.

Knowledge EngineKubernetes DeploymentRAG
0 likes · 27 min read
How We Built a RAG‑Powered Knowledge Base That Actually Understands Source Code
Architect's Alchemy Furnace
Architect's Alchemy Furnace
Jul 12, 2026 · Product Management

Grounded Flight: A Practical Blueprint for Evolving AI Product Managers

The article outlines how future software will serve AI agents instead of humans, describes three essential cognitive shifts for AI product managers, poses four critical questions, presents a detailed capability map covering business understanding, technical principles, data handling, evaluation, prompt design, product design, and ethics, and concludes with actionable advice for thriving in the fast‑moving AI product landscape.

AI product managementData GovernanceEthics
0 likes · 27 min read
Grounded Flight: A Practical Blueprint for Evolving AI Product Managers
AI Illustrated Series
AI Illustrated Series
Jul 11, 2026 · Artificial Intelligence

Turn Java Methods into AI Agent Tools with @Tool Annotation – Day 2 of 3‑Day Spring AI Crash Course

This article explains how to equip a Spring AI Agent with real‑world capabilities by annotating Java methods with @Tool, registers those tools for the agent, demonstrates single‑ and multi‑tool orchestration, and shows how the Advisor mechanism brings AOP‑style processing such as RAG and memory management into AI workflows.

AI AgentAdvisorRAG
0 likes · 10 min read
Turn Java Methods into AI Agent Tools with @Tool Annotation – Day 2 of 3‑Day Spring AI Crash Course
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
AI Engineer Programming
AI Engineer Programming
Jul 9, 2026 · Industry Insights

What Is an FDE? A Deep Dive into the Role Bridging Tech, Business & Ops

The article provides a comprehensive analysis of the emerging FDE role, detailing its definition as a translation officer that combines technical implementation, business translation, and on‑site delivery to bridge the four‑layer gap between mature AI technology and real‑world enterprise adoption.

AI ImplementationAI deploymentBusiness translation
0 likes · 18 min read
What Is an FDE? A Deep Dive into the Role Bridging Tech, Business & Ops
Big Data Technology & Architecture
Big Data Technology & Architecture
Jul 8, 2026 · Artificial Intelligence

Key Evaluation Criteria for Data‑Driven AI Agents

The article outlines a practical framework for assessing data‑centric AI agents, highlighting challenges such as nondeterminism, black‑box behavior, and error amplification, and proposes concrete dimensions—result correctness, semantic consistency, query quality, security, and explainability—to ensure zero‑tolerance accuracy and reproducibility.

AIData AgentRAG
0 likes · 7 min read
Key Evaluation Criteria for Data‑Driven AI Agents
Su San Talks Tech
Su San Talks Tech
Jul 8, 2026 · Artificial Intelligence

How to Build a Chat Service with Memory Using Spring AI 2.0

This article walks through integrating Spring AI 2.0 into a Spring Boot project, configuring model access, implementing synchronous and streaming chat endpoints, and adding Redis‑backed conversation memory to enable true multi‑turn interactions with large language models.

Chat MemoryChatClientOpenAI
0 likes · 14 min read
How to Build a Chat Service with Memory Using Spring AI 2.0
AI Engineer Programming
AI Engineer Programming
Jul 7, 2026 · Artificial Intelligence

LlamaIndex RAG Retrieval: A Three‑Stage Pipeline (Pre‑, During‑, and Post‑Retrieval)

The article breaks down LlamaIndex RAG into three production stages—pre‑retrieval (metadata filtering, document constraints, query transformation), during retrieval (vector‑store ANN/hybrid/MMR, query modes, embedding consistency, extended retrievers) and post‑retrieval (filtering, reranking, context expansion, layout and recency handling)—and provides concrete code snippets, component choices, and practical recommendations for each stage.

Hybrid SearchRAGRerank
0 likes · 15 min read
LlamaIndex RAG Retrieval: A Three‑Stage Pipeline (Pre‑, During‑, and Post‑Retrieval)
Data Party THU
Data Party THU
Jul 7, 2026 · Artificial Intelligence

Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph

This article explains how to use LangGraph to create a hybrid RAG agent that dynamically selects between vector, graph, web, or direct LLM retrieval, detailing the router, grader, rewriter, generator, and hallucination‑checking components along with a complete Python implementation.

Hybrid AgentLLMLangGraph
0 likes · 16 min read
Beyond Vector Retrieval: Building a Multi‑Strategy RAG Agent with LangGraph
DevOps Cloud Academy
DevOps Cloud Academy
Jul 7, 2026 · Operations

AI Agents in DevOps: A Guide for Autonomous Infrastructure Architects

The article outlines a practical blueprint for building AI‑driven agents that continuously observe, plan, and execute infrastructure tasks, transforming DevOps from brittle scripted automation to a probabilistic, self‑healing cognitive architecture that improves reliability, cost efficiency, and security.

AI agentsDevOpsInfrastructure automation
0 likes · 12 min read
AI Agents in DevOps: A Guide for Autonomous Infrastructure Architects
ThinkingAgent
ThinkingAgent
Jul 7, 2026 · Artificial Intelligence

Why a Single Word Change Can Cost Days: PromptOps and Context Engineering in LLM Production

The article explains how a tiny tweak in a system prompt can trigger a three‑day outage, then details the L3 context layer that organizes prompts, version‑controls them, allocates token budgets, compresses context, runs A/B tests, and compares open‑source and SaaS PromptOps platforms for reliable LLM deployments.

A/B testingContext EngineeringLLM Production
0 likes · 26 min read
Why a Single Word Change Can Cost Days: PromptOps and Context Engineering in LLM Production
ThinkingAgent
ThinkingAgent
Jul 6, 2026 · Artificial Intelligence

Turning Data into Model-Ready Knowledge with RAG Pipelines and Vector DBs

An enterprise RAG pipeline must transform scattered documents into timely, secure, and explainable knowledge for LLMs, covering parsing, cleaning, chunking (recursive, semantic, contextual), embedding with BGE‑M3, hybrid vector‑BM25‑graph retrieval, RRF fusion, cross‑encoder rerank, ACL pre‑filtering, and minute‑level incremental updates.

ACLEmbeddingHybrid Retrieval
0 likes · 28 min read
Turning Data into Model-Ready Knowledge with RAG Pipelines and Vector DBs
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
Woodpecker Software Testing
Woodpecker Software Testing
Jul 6, 2026 · Artificial Intelligence

Five New Trends Shaping RAG System Testing in 2026

RAG testing in 2026 has shifted from functional checks to trustworthiness verification, driven by dynamic knowledge‑graph semantic checks, adversarial retrieval perturbation testing, cross‑modal alignment validation, and real‑time SLO‑based feedback loops, with Gartner reporting a 217% deployment rise yet an 18.3% incident rate.

AI testingKnowledge GraphRAG
0 likes · 6 min read
Five New Trends Shaping RAG System Testing in 2026
DataFunTalk
DataFunTalk
Jul 5, 2026 · Artificial Intelligence

Exploring Multimodal GraphRAG: How Document Intelligence, Knowledge Graphs, and Large Models Combine

This article presents a comprehensive technical analysis of multimodal GraphRAG, covering document‑intelligent parsing pipelines, multimodal graph index construction, knowledge‑graph‑enhanced chunk linking, various multimodal RAG approaches, their trade‑offs, benchmark results, and future research directions.

GraphRAGKnowledge GraphRAG
0 likes · 24 min read
Exploring Multimodal GraphRAG: How Document Intelligence, Knowledge Graphs, and Large Models Combine
Machine Heart
Machine Heart
Jul 4, 2026 · Artificial Intelligence

Is RAG Doomed? Exploring Paths to True AI Memory and Continuous Learning

The article examines why Retrieval‑Augmented Generation (RAG) remains an external memory workaround, outlines its three fundamental drawbacks, compares it with internalized knowledge in large models, and discusses how human‑brain‑inspired offline digestion could guide the next generation of continuously learning AI systems.

AI memoryKnowledge RetrievalLarge Language Models
0 likes · 7 min read
Is RAG Doomed? Exploring Paths to True AI Memory and Continuous Learning
Architecture Digest
Architecture Digest
Jul 3, 2026 · Artificial Intelligence

From Chatting to Getting Things Done: LLM, RAG, Function Calling & Harness in AI Travel Planning

The article walks through a step‑by‑step evolution of AI—from large language models and prompt engineering to retrieval‑augmented generation, function calling, agents, and harnesses—illustrated with a concrete travel‑planning scenario, showing how each technology adds real‑world capability.

AIAgentFunction Calling
0 likes · 12 min read
From Chatting to Getting Things Done: LLM, RAG, Function Calling & Harness in AI Travel Planning
Black & White Path
Black & White Path
Jul 3, 2026 · Information Security

The One API Line That Separates You From Top Hackers

The article argues that the bottleneck in security research is information scarcity, not talent, and introduces Preview—a RAG platform that indexes recent write‑ups and provides a simple API allowing AI agents to retrieve up‑to‑date vulnerability details, overcoming frozen LLM knowledge and delivering raw source links for accurate exploitation.

AI securityAPIRAG
0 likes · 9 min read
The One API Line That Separates You From Top Hackers
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Jul 2, 2026 · Artificial Intelligence

AI Search + ES Agent Builder: Best Practices for Deploying Enterprise AI Assistants

This guide explains why enterprise data is hard for large language models, introduces ES Agent Builder as a solution, outlines three high‑value use cases, details the three‑layer architecture and four core components, and provides practical best‑practice recommendations with concrete examples and visualizations.

AI SearchAgent BuilderData Integration
0 likes · 15 min read
AI Search + ES Agent Builder: Best Practices for Deploying Enterprise AI Assistants
PaperAgent
PaperAgent
Jul 2, 2026 · Artificial Intelligence

MCompassRAG: Using Topic Metadata as a Semantic Compass to Accelerate RAG Retrieval

MCompassRAG introduces a semantic‑compass approach that attaches topic metadata to coarse chunks, eliminating the need for fine‑grained splitting, reranking, or LLM calls during inference, and achieves an average 8.24% information‑efficiency gain and over five‑fold latency reduction across six complex retrieval benchmarks.

MCompassRAGRAGinformation efficiency
0 likes · 8 min read
MCompassRAG: Using Topic Metadata as a Semantic Compass to Accelerate RAG Retrieval
AI Architecture Path
AI Architecture Path
Jul 2, 2026 · Artificial Intelligence

How Cognee’s Single‑Postgres AI Memory Outperforms Traditional RAG (23K+ Stars)

Cognee is an open‑source AI memory platform that combines vector embeddings and knowledge‑graph reasoning on a single Postgres database, delivering dual retrieval, automatic ontology generation, and BEAM benchmark scores up to 0.8—more than double traditional RAG—while offering multi‑language SDKs and flexible deployment options.

AI memoryKnowledge GraphOpen Source
0 likes · 15 min read
How Cognee’s Single‑Postgres AI Memory Outperforms Traditional RAG (23K+ Stars)
Sohu Tech Products
Sohu Tech Products
Jul 1, 2026 · Artificial Intelligence

How Multi‑Agent Orchestration Defeats AI Search Poisoning (Anti‑GEO Architecture)

The article analyzes the emerging GEO (Generative Engine Optimization) attack that poisons RAG‑based AI search results, explains why single‑agent architectures are vulnerable, and details a multi‑agent orchestrator with whitelist tools, asynchronous cross‑validation, adversarial filtering, and UI provenance to robustly defend against such poisoning.

AI securityGEO attackLLM
0 likes · 12 min read
How Multi‑Agent Orchestration Defeats AI Search Poisoning (Anti‑GEO Architecture)
DataFunSummit
DataFunSummit
Jul 1, 2026 · Artificial Intelligence

How Bailei Knowledge Base Uses Flink and DLF (Paimon) to Build an Enterprise‑Scale Full‑Modal RAG System

Bailei Knowledge Base delivers an enterprise‑grade, full‑modal Retrieval‑Augmented Generation solution covering documents, tables, images and audio‑video, powered by Flink's high‑throughput streaming for billions of daily document indexes and DLF/Paimon’s three‑layer reliable backup, achieving sub‑200 ms latency and 99.99% availability.

DLFEnterprise AIFlink
0 likes · 26 min read
How Bailei Knowledge Base Uses Flink and DLF (Paimon) to Build an Enterprise‑Scale Full‑Modal RAG System
Data Party THU
Data Party THU
Jul 1, 2026 · Artificial Intelligence

How PageIndex Redefines RAG: Unpacking Its Structural Advantage Over Traditional Vector Retrieval

PageIndex introduces a non‑vector, reasoning‑based RAG approach that builds a hierarchical index from a document’s structure, lets large language models navigate to relevant sections, and delivers precise, citation‑rich answers, making it especially effective for long, well‑structured texts such as financial reports, legal contracts, and academic papers.

LLMPageIndexRAG
0 likes · 8 min read
How PageIndex Redefines RAG: Unpacking Its Structural Advantage Over Traditional Vector Retrieval
Java Backend Technology
Java Backend Technology
Jul 1, 2026 · Artificial Intelligence

LangChain4j vs LangGraph4j: Which Java AI Framework Should You Choose?

This article compares LangChain4j and LangGraph4j, explaining their roles as an AI capability‑access layer and a workflow‑orchestration layer respectively, detailing core features, design philosophies, code examples, strengths, limitations, version updates, and practical scenarios to help Java developers decide which tool fits their needs.

AI agentsLangChain4jLangGraph4j
0 likes · 20 min read
LangChain4j vs LangGraph4j: Which Java AI Framework Should You Choose?
21CTO
21CTO
Jun 30, 2026 · Artificial Intelligence

Why PHP, Not Python, Is the Underrated Powerhouse for AI Agents

The article argues that, despite Python’s dominance in AI research, PHP’s ubiquitous production‑grade web stack, built‑in authentication, database access, and recent language features make it a pragmatic choice for building AI agents that call LLM APIs via simple REST requests, without extra runtimes or orchestration tools.

AI agentsLLM IntegrationNeuron-AI
0 likes · 14 min read
Why PHP, Not Python, Is the Underrated Powerhouse for AI Agents
Su San Talks Tech
Su San Talks Tech
Jun 30, 2026 · Artificial Intelligence

LangChain4j vs LangGraph4j: Which Java AI Framework Fits Your Needs?

This article compares LangChain4j and LangGraph4j, explaining that the former is an AI capability integration layer for Java while the latter is a state‑graph workflow engine, and guides developers on when to use each based on features such as model access, tool calling, multi‑agent orchestration, conditional routing, checkpointing, and version maturity.

AI agentsLangChain4jLangGraph4j
0 likes · 19 min read
LangChain4j vs LangGraph4j: Which Java AI Framework Fits Your Needs?
Data Party THU
Data Party THU
Jun 29, 2026 · Artificial Intelligence

Mapping LLM Reasoning: Paradigms, Methods, and Failure Modes in a Periodic Table

This 103‑page survey of over 300 recent papers organizes large language model reasoning into a periodic‑table framework, explains where reasoning emerges, categorizes 36 method families across six dimensions, critiques accuracy‑only evaluation, and outlines key open challenges such as fidelity, robustness, calibration, generalization, efficiency, and safety.

AI safetyLLM reasoningMeta-reasoning
0 likes · 13 min read
Mapping LLM Reasoning: Paradigms, Methods, and Failure Modes in a Periodic Table
BirdNest Tech Talk
BirdNest Tech Talk
Jun 29, 2026 · Artificial Intelligence

Packing 775 Saved Articles into a 4 MB Vector Store: A RAG Skill That Beats Karpathy’s Wiki

The author built an open‑source RAG skill called chao‑rag‑wiki that compresses 775 collected articles into a 4.8 MB vector index using TurboVec, hybrid dense‑plus‑BM25 retrieval and optional LLM reranking, then compares its zero‑compile latency and full‑recall strengths against Karpathy’s llm‑wiki approach.

AI knowledge baseHybrid RetrievalObsidian
0 likes · 16 min read
Packing 775 Saved Articles into a 4 MB Vector Store: A RAG Skill That Beats Karpathy’s Wiki