<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>大模型应用开发入门 on 极客老墨</title>
    <link>https://blog.hankmo.com/series/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%BA%94%E7%94%A8%E5%BC%80%E5%8F%91%E5%85%A5%E9%97%A8/</link>
    <description>Recent content in 大模型应用开发入门 on 极客老墨</description>
    <generator>Hugo -- 0.163.3</generator>
    <language>zh-cn</language>
    <lastBuildDate>Sat, 11 Jul 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://blog.hankmo.com/series/%E5%A4%A7%E6%A8%A1%E5%9E%8B%E5%BA%94%E7%94%A8%E5%BC%80%E5%8F%91%E5%85%A5%E9%97%A8/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>13-Function Calling的工作流程：从定义工具到结果回传</title>
      <link>https://blog.hankmo.com/function-calling-workflow/</link>
      <pubDate>Sat, 11 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/function-calling-workflow/</guid>
      <description>接着上一节的 get_weather 示例，这篇不讲空概念，直接逐帧拆解 Function Calling 闭环：第一次请求发了什么、模型返回了什么、工具层如何执行、第二次请求怎么拼消息、最终答案如何生成，并给出每一步的字段解释与排障要点。</description>
    </item>
    <item>
      <title>大模型的局限性：开发者如何与&#34;会说谎&#34;的 AI 共处</title>
      <link>https://blog.hankmo.com/llm-limitations-developer-guide/</link>
      <pubDate>Thu, 09 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-limitations-developer-guide/</guid>
      <description>幻觉、知识截止、上下文遗忘、不确定性——这是每个 AI 应用开发者迟早都要正面硬刚的四道坎。本文不讲大道理，只讲这些局限的根因、影响，以及开发者真正能用上的规避手段。</description>
    </item>
    <item>
      <title>流式输出：打字机效应背后的秘密与 Go 实战</title>
      <link>https://blog.hankmo.com/llm-streaming-sse-go/</link>
      <pubDate>Fri, 03 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-streaming-sse-go/</guid>
      <description>大模型的回答为什么是一个字一个字蹦出来的？背后是 SSE 协议。本文从协议原理到 Go 实现，覆盖基础流式转发、V4 Thinking 模式下 reasoning_content 的流式处理、上线避坑和 TTFT 优化。</description>
    </item>
    <item>
      <title>大模型如何&#34;记住&#34;你说过的话：多轮对话机制与 Go 实操</title>
      <link>https://blog.hankmo.com/llm-chat-history-go/</link>
      <pubDate>Sat, 27 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-chat-history-go/</guid>
      <description>大模型 API 是无状态的，多轮对话的记忆全靠开发者拼接历史消息。本文从原理到工程实现，覆盖 Token 级滑动窗口、reasoning_content 过滤、摘要压缩、Session 隔离和 V4 缓存策略，用 Go 实现生产级多轮对话方案。</description>
    </item>
    <item>
      <title>开发者如何接管大模型：API 调用逻辑深度拆解</title>
      <link>https://blog.hankmo.com/llm-dev-api-logic/</link>
      <pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-dev-api-logic/</guid>
      <description>2026 年，大模型 API 的调用逻辑已经从简单的&amp;#34;问答&amp;#34;演进到了&amp;#34;推理&#43;缓存&#43;可观测&amp;#34;的新阶段。本文以 DeepSeek V4 API 为主线，深度拆解请求与响应逻辑——从 thinking mode 参数、上下文缓存到流式输出和成本控制，带你从底层协议层面理解 AI 应用是怎么跑通的。</description>
    </item>
    <item>
      <title>开发者必备的&#34;饭碗&#34;：大模型应用开发工具链全景图</title>
      <link>https://blog.hankmo.com/dev-tools-llm/</link>
      <pubDate>Sat, 20 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/dev-tools-llm/</guid>
      <description>大模型应用开发的工具链已经从”装一个 AI IDE”变成了”模型 API、Coding Agent、Agent 编排、评测、观测和权限控制”的组合工程。本文按真实开发流程梳理 2026 年值得关注的工具：DeepSeek、OpenAI、Claude、Codex、Claude Code、CodeWhale（deepseek-tui）、Cursor、Windsurf、Trae、Ollama、promptfoo、Dify、Coze、n8n、Eino，以及 Go 开发者该怎么取舍。</description>
    </item>
    <item>
      <title>大模型 API 核心参数：调对了事半功倍，调错了钱打水漂</title>
      <link>https://blog.hankmo.com/llm-core-parameters/</link>
      <pubDate>Wed, 17 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-core-parameters/</guid>
      <description>prompt 看起来没问题，接口却一会儿乱答、一会儿截断、一会儿 JSON 解析失败？我刚开始写 AI 应用时，也很容易把问题都归到 prompt 上。后来才发现，很多问题其实是 API 参数没有按业务场景设好。本文用一个客服工单摘要接口，把 model、thinking、reasoning_effort、temperature、top_p、top_k、max_tokens、response_format、tools、tool_choice、stop、stream、logprobs、user_id 和 usage 这些核心参数讲透。</description>
    </item>
    <item>
      <title>Token 是什么：大模型计费和上下文管理的底层逻辑</title>
      <link>https://blog.hankmo.com/token-deep-dev-deepseek/</link>
      <pubDate>Sat, 13 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/token-deep-dev-deepseek/</guid>
      <description>Token 是大模型 API 调用的核心计量单位，直接关联成本、上下文截断和响应质量。本文从 BPE 分词原理出发，拆解 DeepSeek 计费逻辑、Context Window 约束，并用 Go 实现一个对接官方 tokenizer 的精准计数器。</description>
    </item>
    <item>
      <title>大模型是怎么炼成的：从训练数据到你手里的 API</title>
      <link>https://blog.hankmo.com/llm-how-it-works/</link>
      <pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-how-it-works/</guid>
      <description>大模型怎么造出来的，又是怎么工作的？本文把&amp;#34;训练数据→预训练→微调对齐→部署→推理&amp;#34;这条完整链路拆开来讲，搞清楚一个模型从无到有、再到你手里 API 调用的全过程。</description>
    </item>
    <item>
      <title>大模型能干什么：六大核心应用场景拆解</title>
      <link>https://blog.hankmo.com/llm-app-scenarios/</link>
      <pubDate>Sat, 06 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-app-scenarios/</guid>
      <description>从开发者视角拆解大模型六大核心应用场景——文生文、文生图、文生视频、语音交互、数字人、智能问答，搞清楚每个场景的技术本质、真实边界和落地逻辑，不堆概念，只讲和开发直接相关的部分。</description>
    </item>
    <item>
      <title>大模型发展史：从一篇论文到改变世界</title>
      <link>https://blog.hankmo.com/llm-history-timeline/</link>
      <pubDate>Wed, 03 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/llm-history-timeline/</guid>
      <description>从 2017 年 Transformer 诞生，到 2026 年 Agent 遍地开花——用开发者视角梳理大模型发展的关键里程碑，搞清楚每个阶段留下了什么技术遗产，以及为什么今天的大模型长成了现在这个样子。</description>
    </item>
    <item>
      <title>什么是大模型：开发者必须搞清楚的核心概念</title>
      <link>https://blog.hankmo.com/what-is-llm/</link>
      <pubDate>Sat, 30 May 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.hankmo.com/what-is-llm/</guid>
      <description>立足开发者视角，搞清楚大模型是什么、从哪来、主流选型怎么选，以及模型分工类型（LLM/Embedding/Reranker）、Token、Context Window、多模态四个核心概念——不涉及数学，只讲和开发直接相关的部分。</description>
    </item>
  </channel>
</rss>
