Building an Internal Knowledge System with Easysearch and Large Language Models
Introduction to Enterprise Knowledge Retrieval Challenges
Modern enterprises often accumulate vast amounts of internal documentation, ranging from product specifications and compliance guidelines to operational procedures and technical manuals. New employees frequently encounter a deluge of information, often struggling to locate specific detai ...
Posted on Sat, 04 Jul 2026 17:15:31 +0000 by Stagnate
LangPipe: A Lightweight Framework for LLM Pipeline Applications
LangPipe is a lightweight framework designed for building applications with large language models. It provides solutions for various tasks including:
Text generation
Conversations with LLMs
Task classification
Parametre extraction
Web search-based RAG
SQL-based RAG
Vector-based RAG
Database interactions
Web content conversations
Knowledge base ...
Posted on Tue, 30 Jun 2026 17:06:21 +0000 by adnan856
Technical Architecture of Generative Engine Optimization Systems
The Paradigm Shift: From Indexing to Synthesis
As user behavior transitions from keyword-based queries to natural language interrogations, the mechanism of information discovery is shifting fundamentally. The dominance of traditional Search Engine Optimization (SEO), which relies on keyword matching and backlink graphs, is being challenged by G ...
Posted on Fri, 26 Jun 2026 16:21:30 +0000 by abhi
An Overview of Retrieval-Augmented Generation (RAG): Core Concepts and Implementation
What is Retrieval-Augmented Generation (RAG)?
Retrieval-Augmented Generation (RAG) is a technique that combines information retrieval with generative models. It addresses the limitation of storing all knowledge within a single model's parameters by first retrieving relevant information from an external knowledge source and then using this conte ...
Posted on Tue, 23 Jun 2026 17:09:35 +0000 by coho75
Deploying Langchain-Chatchat 0.3.0 with Xinference: Setup Walkthrough and Troubleshooting Tips
2024-7-15 Update
The Langchain-Chatchat codebase has advanced to version 0.3.1, which revises CLI execution. The original Step 4 instructions are no longer compatible; follow the project’s official README instead.
The 0.3.0 release of Langchain-Chatchat introduced architectural adjustments, requiring integration with third-party model inferen ...
Posted on Thu, 04 Jun 2026 17:57:22 +0000 by kpetsche20
FastGPT Quick Start Guide: Building an Enterprise AI Knowledge Base in 30 Minutes
FastGPT Quick Start Guide: Building an Enterprise AI Knowledge Base in 30 Minutes
FastGPT is an open-source AI agent platform that simplifies complex large language model applications through drag-and-drop workflows. This guide will walk you through deployment, core configuration, and practical implementation to transform AI into your organizat ...
Posted on Tue, 02 Jun 2026 18:05:01 +0000 by gazfocus
Environment Setup Guide for LangChain v0.3 and Xinference Deployment
Deploying a RAG system using the latest LangChain v0.3 alongside the Xinference inference framework requires careful environment isolation. To avoid dependency conflicts between the orchestration layer and the model backend, its best practice to maintain separate virtual environments. Below is a technical breakdown of the configuraton process a ...
Posted on Sun, 17 May 2026 16:42:26 +0000 by dheeraj
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