Introduction to Vector Stores and Embeddings with LangChain
In this post, we explore vector stores and embeddings, which are crucial components for building chatbots and performing semantic search on data corpora.
Workflow
Recall the entire workflow of Retrieval Augmented Generation (RAG):
We start with documents, create smaller splits of these documents, generate embeddings for these splits, and store ...
Posted on Sun, 17 May 2026 07:35:31 +0000 by rallen102
Building a Domain-Specific RAG Assistant with Huixiangdou
Retrieval-Augmented Generation Architecture
Large Language Models (LLMs) often struggle with static training data limitations, leading to issues with outdated information and hallucinations. Retrieval-Augmented Generation (RAG) addresses this by grounding model responses in external, up-to-date knowledge bases. This technique operates in three ...
Posted on Fri, 15 May 2026 04:34:06 +0000 by dragon_sa
Deploying a RAG-Powered AI Assistant Using InternLM Studio
Setting Up the Development Environment on InternLM Studio
Begin by launching a develompent instance and configuring the runtime environment. Once inside, replicate the base environment for running InternLM by creating a custom conda environment named InternLM2_Huixiangdou:
studio-conda -o internlm-base -t InternLM2_Huixiangdou
After cloning th ...
Posted on Thu, 14 May 2026 21:55:05 +0000 by BAM1979
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