Building a RAG-Based Intelligent Assistant
This article provides a detailed technical guide on implementing a Retrieval-Augmented Generation (RAG) intelligent assistant using the InternLM framework and the Huixiangdou toolset. The process involves creating a domain-specific knowledge base, deploying the assistant on cloud platforms, and integrating it with popular communication tools li ...
Posted on Fri, 31 Jul 2026 16:52:55 +0000 by dude81
Optimizing Large Language Models through Weight Quantization
Large Language Models (LLMs) demand significant computational resources, primarily defined by the product of parameter count and numerical precision. To minimize memory overheadd, developers use quantization—a technique that maps high-precision weights to lower-precision formats.
Taxonomy of Quantization
Post-Training Quantization (PTQ): Conve ...
Posted on Fri, 31 Jul 2026 16:49:00 +0000 by harinath
Deploying and Running Llama 2 Locally on Windows and macOS
The llama.cpp project provides a high-performance C++ implemnetation for running Large Language Models (LLMs) like Llama 2 with minimal overhead. It is designed for efficient inference on various hardware setups, ranging from standard consumer laptops to cloud environments, without requiring heavy dependencies.
Building llama.cpp from Source
To ...
Posted on Tue, 28 Jul 2026 16:41:44 +0000 by ryanpaul
Comprehensive Guide to Local Open Source LLM Deployment Options
The ecosystem of open source tools for local LLM inference spans from command-line interfaces to full-featured desktop applications. This guide categorizes these solutions into three main categories:
Integrated desktop applications
Command-line and API server solutions
Frontend interfaces for back end connectivity
Each category presents disti ...
Posted on Sat, 25 Jul 2026 16:45:20 +0000 by AMV
Deploying RAG Inference Clusters with GPUStack and Dify
Managing heterogeneous accelerators for Retrieval-Augmented Generation pipelines requires a unified serving layer. GPUStack provides an open-source infrastructure to aggregate NVIDIA, Apple Silicon, Ascend, and Moore Threads hardware into a single cluster, enabling on-premise deployment of the three foundational components for RAG: conversation ...
Posted on Tue, 07 Jul 2026 16:58:19 +0000 by iBlizz
GPUStack: Open Source GPU Cluster Manager for Private LLM Deployment
GPUStack is an open-source platform designed to simplify the deployment and management of large language models (LLMs) across heterogeneous GPU clusters. While public cloud LLM APIs are widely accessible, organizations seeking private, on-premises LLM hosting face significant complexity in infrastructure setup, model orchestration, and resource ...
Posted on Tue, 07 Jul 2026 16:50:52 +0000 by gorgo666
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
Building a Large Language Model Chat Application with Streamlit
Getting Started with LLM Chat Applications
Developing a functional chat application using large language models (LLMs) can be achieved quickly with the right tools. Streamlit simplifies the process by allowing rapid prototyping and deployment, especially for developers less familiar with frontend development.
Prerequisites
Before starting, ensu ...
Posted on Fri, 03 Jul 2026 17:52:36 +0000 by scnov
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
Engineering Real-World LLM Applications: Evaluation, Security, and Scalability
Evaluation: The Gatekeeper to Production
Before deploying any language model-powered application, rigorous evaluation is non-negotiable. Unlike traditional rule-based systems, LLMs produce probabilistic outputs — meaning errors are inevitable. The goal isn't perfection, but consistent alignment with user expectations under real-world conditions ...
Posted on Sun, 28 Jun 2026 16:37:01 +0000 by jclarkkent2003