self-media-james/articles/003/diagram-07-tool-search.mmd
邓文兵 76c9a60379 feat(article): 添加 GPT-5.4 深度解析文章及配套图表
- 新增 GPT-5.4 深度解析文章,涵盖六大核心能力详解
- 添加 SVG 格式的 GPT-5.4 能力全景图
- 添加 Mermaid 格式的模型家族关系图
- 添加 GPT-5.4 六大能力思维导图
- 添加 Computer Use 工作流程图
- 添加 OSWorld 桌面操作基准测试图表
- 添加 上下文窗口演进对比图
- 添加 上下文压缩原理图
- 添加 Tool Search 机制对比图
- 添加 可配置推理深度图
- 添加 GDPval 对比图表
- 添加 三方模型对比图
- 添加 API 定价对比图
- 添加 Mermaid 配置文件和样式文件
- 添加模型选择指南 SVG 图片
2026-03-16 16:28:42 +08:00

16 lines
621 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

graph TB
subgraph 传统方式["❌ 传统方式:全量加载"]
T1["请求开始"] --> T2["加载全部 100 个工具定义<br/>~40K tokens"]
T2 --> T3["模型选择 1 个工具"]
T3 --> T4["99 个工具的定义被浪费"]
end
subgraph 新方式["✅ Tool Search按需加载"]
N1["请求开始"] --> N2["加载轻量工具列表<br/>~2K tokens"]
N2 --> N3["模型搜索需要的工具"]
N3 --> N4["按需加载 1 个工具定义<br/>~400 tokens"]
end
style T4 fill:#c62828,stroke:#fff,color:#fff
style N4 fill:#10a37f,stroke:#fff,color:#fff