Tag
LLM
- Jul 1, 2026
Building a Minimal LLM Pipeline
This post builds a minimal LLM extraction pipeline from scratch using ICD code extraction as the running example. The pipeline includes data I/O, a thin LLM wrapper, prompt construction, JSON parsing, schema validation, retry logic, batch execution, and evaluation. The goal is to show the foundational utility layer that makes LLM applications testable, debuggable, provider-agnostic, and production-ready.
#LLM#ML coding#NLP#Applied AI - Mar 2, 2026
Automating the Prompt Production Line
In production LLM systems, a prompt is no longer just a string written by a human. It is a deployable artifact. This post explains how automated prompt optimization actually works: build eval sets, collect optimization signals, generate candidates, and evaluate changes in stages. Prompts become versioned, testable artifacts with eval gates, canary rollouts, observability, and rollback.
#LLMOps#AI Infra#LLM#Production AI - Feb 3, 2026
从传统摘要到语义合成
在大语言模型(LLM)驱动的范式下,“摘要”已不再只是面向人类读者的短文本生成任务,而是逐渐演变为机器对机器(M2M)的语义合成算子。它的核心不只是压缩文本长度,而是建立一套从非结构化文本到结构化中间表示(IR)的编译机制,将原始材料转化为可消费、可检索、可追溯、可验证、可执行的高密度语义资产。要落地这一合成管线,系统必须依托上下文工程(Context Engineering)进行全生命周期治理:决定哪些信息可以进入,哪些信息需要保留,如何压缩、组织、呈现,以及如何评估其质量。
#AI#NLP#LLM#RAG - Nov 19, 2025
Demystifying Agentic Search Engines
Agentic search engines—such as Google AI Mode, Perplexity, Bing Copilot, ChatGPT Search no longer means “type keywords, get ten blue links.” AI Search experience capable of understanding tasks, planning queries, calling tools, and synthesizing results and deliver a conversational response with inline citations, minimizing user effort. In this post, I’ll walk through the stack from bottom to top, how it crawls and indexes pages, how it retrieves and ranks information, and how recent features like RAG and Agentic search build upon these foundations.
#System Design#RAG#Retrieval#LLM - Jan 15, 2025
大模型(LLM)关键技术:从基础到落地
#LLM#AI#大模型#Transformer - May 29, 2024
Retrieval-Augmented Generation (RAG)
Retrieval-Augmented Generation (RAG) combines large language models with external knowledge retrieval to produce more accurate and grounded responses. The post explains why RAG was introduced, explores its key use cases and real-world applications, and discusses challenges and considerations that impact performance in practical deployments.
#LLM#AI#GenAI#NLP - Mar 18, 2024
对话系统:从人机交流走向理解与互动
本文探讨了机器学习如何推动人与机器的自然交流,从早期的对话系统到如今能够理解意图、执行任务的智能助理。近年来的趋势是向LLM + Agent 化对话系统演进,LLM 可嵌入架构中各核心模块,增强系统的理解、生成与决策能力。最终,通过引入智能代理机制,让对话系统从“能说”进一步迈向“能做”。
#NLP#AI#LLM#ML