Building an Enterprise Private Knowledge Base with Crawler, Vector Database, and LLM
Overview
Large Language Models face several critical challenges in enterprise settings:
Research costs: Running a 13B+ model requires 24GB+ VRAM for full quantization, making experimentation expensive
Training overhead: Knowledge updates require complete retraining cycles
Hallucination: Models generate plausible but incorrect responses when la ...
Posted on Wed, 13 May 2026 04:56:58 +0000 by ozzysworld
Advanced Retrieval-Augmented Generation Patterns for Production LLM Systems
Current RAG Landscape
Retrieval-Augmented Generation has evolved far beyond simple vector search. The latest survey "Retrieval-Augmented Generation for Large Language Models" highlights three active areas of innovation:
Query-side augmentation (query transformation)
Agentic orchestration of retrieval
Post-retrieval refinement
Self-R ...
Posted on Tue, 12 May 2026 13:54:23 +0000 by Kane250
Optimizing RAG Pipelines: Comparative Analysis of Chunking, Embedding, and LLM Strategies
Retrieval-Augmented Generation (RAG) systems benefit significantly from strategic optimizations across three core components:
1. Document Chunking Strategies
Effective text segmentation improves retrieval accuracy by 89% in our tests. We evaluated three approaches:
Fixed-Length Chunking
Basic segmentation with consistent chunk sizes:
from langc ...
Posted on Sun, 10 May 2026 18:53:52 +0000 by drcdeath
Architecting Enterprise AI Content Marketing Platforms: RAG, Brand Profiles, and Multi-Platform Distribution
Business and Technical Challenges in Enterprise Content MarketingDigital transformation has made content marketing mandatory, yet traditional workflows face severe bottlenecks:Efficiency Limits: Small teams (e.g., 3 operators) managing 5 distinct channels (social networks, Q&A forums, news aggregators, developer blogs) struggle to exceed 3-5 ar ...
Posted on Sun, 10 May 2026 18:30:02 +0000 by erikw46
Building Multi-Agent Collaborative RAG Systems with Spring AI Alibaba
System Architecture
Three-Layer Collaboration Model
1. RAG Execution Unit (Sequential Collaboration)
Query Rewriting → Multi-path Retrieval → Answer Generation
Executes a complete RAG workflow independently
2. Checker Agent (Cyclic Collaboration)
Multi-dimensional scoring (relevance, accuracy, completeness, timeliness)
Provides improvement sug ...
Posted on Sun, 10 May 2026 00:16:04 +0000 by meshi
Building a Domain-Specific RAG Assistant with Huixiangdou and InternLM
Retrieval-Augmented Generation Architecture
Retrieval-Augmented Generation (RAG) enhances generative models by dynamically fetching relevant context from external knowledge stores before synthesizing a resposne. This methodology addresses core limitations of standalone large language models, including factual hallucination, temporal knowledge d ...
Posted on Fri, 08 May 2026 15:48:59 +0000 by nimbus