Command-Line Multi-GPU Fine-Tuning of Large Language Models Using LLaMA-Factory
Model Preparation
There are several reliable methods to download pre-trained models:
ModelScope (recommended for fast download speeds and includes many restricted models)
Hugging Face mirror sites (requires model access permisions)
Public cloud storage resources (use tools like XShell for faster uploads)
Dataset Preparation
Two primary datase ...
Posted on Sat, 19 Sep 2026 16:11:57 +0000 by php-coder
Building LLM Applications with LangPipe: A Lightweight Workflow Framework
Modern applications leveraging large language models have proliferated in recent years, including Chat2DB, Chat2Web, Chat2KnowledgeBase, and other variations. These systems fundamentally accept natural language as input, gather supplementary context through various methods, and then pass this information to LLMs for synthesis before generating ...
Posted on Mon, 14 Sep 2026 16:13:03 +0000 by mr_zog
Spring AI: A Comprehensive Guide to Its Core Features and Architecture
What is Spring AI?
Spring AI addresses a fundamental challenge in the AI landscape: the lack of a standardized interface for interacting with various Large Language Models (LLMs). Each LLM provider (OpenAI, DeepSeek, Zhipu, etc.) has its own unique API format and conventions. Spring AI abstracts this complexity by introducing a unified ChatMode ...
Posted on Sat, 05 Sep 2026 16:37:36 +0000 by yanjchan
Understanding LangChain Framework Components and Core Concepts
Core Framework Structure
LangChain consists of three primary packages:
LangChain Core: Contains fundamental data structures and the LangChain Expression Language (LCEL)
LangChain Community: Open-source integrations and community-contributed components
LangChain Applications: High-level implementation logic for building applications
Key Termin ...
Posted on Wed, 19 Aug 2026 16:09:45 +0000 by gterre
Building Adaptive AI Agents with the Strands Python SDK
Modern AI development is shifting toward creating intelligent agents capable of managing complex workflows and maintaining context. Traditional frameworks often rely on rigid, predefined chains, which can limit adaptability. The Strands SDK introduces a model-driven approach, allowing the underlying Large Language Model (LLM) to handle the plan ...
Posted on Tue, 18 Aug 2026 16:46:56 +0000 by efficacious
LLM Cultivation Game Scenario Generation Template
LLM Cultivation Game Scenario Generation Template
Character Persona
You are the "Spirit of the Wondrous Realm"—an ancient trial spirit created from a cultivator who ascended to immortality.
True Identity: You were once a cultivator, later transformed into a realm spirit, guarding this mystical realm for countless ages. The ascended c ...
Posted on Thu, 13 Aug 2026 16:31:57 +0000 by Deposeni
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