Skip to content
Go back

AI Agent 工程化系统手册 (2026 版)

Edit page

tags: [LLM, Agent, Index, 阿里面试] created: 2026-05-22

AI Agent 工程化系统手册 (2026 版)

面试核心定位:面向**阿里 AI 应用工程师(工程落地)**的实战知识体系。
所有理论必须能映射到工程实现和高并发业务场景。


📚 知识体系导航

本手册已按主题拆分为专项深度笔记,每篇包含原理拓展 + Python 示例代码

序号主题核心内容阿里面试相关度
01[[agent-01-planning-reasoning]]CoT / ReAct / Plan-and-Execute / Reflection / ToT⭐⭐⭐⭐⭐
02[[agent-02-memory-context]]Sliding Window / Summary / RAG / Hybrid Search / Rerank⭐⭐⭐⭐⭐
03[[agent-03-tool-use-action]]Function Calling / Pydantic校验 / 并发工具 / MCP / 熔断降级⭐⭐⭐⭐⭐
04[[agent-04-eval-system]]LLM-as-Judge / RAGAS / Eval Runner / CI/CD 门禁⭐⭐⭐⭐⭐
05[[agent-05-infra-performance]]KV Cache / PagedAttention / Continuous Batching / SSE 流式⭐⭐⭐⭐⭐
06[[agent-06-observability]]Tracing / Token成本 / 归因分析 / 告警⭐⭐⭐⭐

🗺️ 核心架构速览

┌─────────────────────────────────────────────────────────┐
│                    Agent 系统架构                         │
│                                                          │
│  User Input                                              │
│      ↓                                                   │
│  ┌─────────────────────────────────────────┐            │
│  │  Planning Layer(规划层)                │            │
│  │  ReAct / Plan-and-Execute / Reflection   │            │
│  └─────────────────────────────────────────┘            │
│      ↓                    ↓                              │
│  ┌──────────┐      ┌──────────────┐                     │
│  │ Memory   │      │ Tool / Action │                     │
│  │ RAG/滑窗 │      │ Function Call │                     │
│  └──────────┘      └──────────────┘                     │
│      ↓                    ↓                              │
│  ┌─────────────────────────────────────────┐            │
│  │  Eval 体系(评测 + CI/CD 质量门禁)       │            │
│  └─────────────────────────────────────────┘            │
│  ┌─────────────────────────────────────────┐            │
│  │  Observability(Trace + Metrics + Cost) │            │
│  └─────────────────────────────────────────┘            │
│  ┌─────────────────────────────────────────┐            │
│  │  Infra(vLLM + Continuous Batching)     │            │
│  └─────────────────────────────────────────┘            │
└─────────────────────────────────────────────────────────┘

⚡ 高频面试问题速查

Planning 相关

Memory / RAG 相关

Tool Use 相关

Infra 相关

Eval 相关


🎯 面试防守策略:如何用 CodeBuddy 回答概念问题

策略:将具体项目作为抽象概念的落地证明。


同目录:[[prompt-engineering]]


Edit page
Share this post on:

Next Post
How to configure AstroPaper theme