Auto-sync

This commit is contained in:
2026-04-15 15:02:52 +08:00
parent bb2f9b2b3a
commit d3e7fcf81f
71 changed files with 2549 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
---
title: "Agentic AI"
type: concept
tags: [ai-agent, autonomy]
last_updated: 2026-04-15
---
## Definition
能感知环境、做出决策、预判需求并自主采取行动的 AI 系统。与 GenAI生成内容的被动响应不同Agentic AI 强调行动导向,与环境持续交互。
## Core Loop
1. **感知Perceive**:获取任务,扫描环境上下文
2. **思考Reason**:使用 LLM 进行推理,制定行动计划
3. **行动Act**调用工具API、代码、数据库
4. **观察Observe**:将行动结果加入上下文,循环迭代
## Key Characteristics
- 主动性:预判用户需求而非被动响应
- 自主性:在无人工干预下完成任务循环
- 上下文感知:整合环境信息和历史记忆
## Relationship to Other Concepts
- [[GenAI]]Agentic AI 的内容生成基础
- [[RAG]]:为 Agentic AI 提供实时信息获取能力
- [[LLM]]Agentic AI 的"大脑",提供推理能力
## Related Concepts
- [[AI-Agent-设计原则]]:透明度、控制感、个性化、对话、预判
- [[Multi-Agent-Hierarchy]]:多 Agent 协作架构之一
## Aliases
- AI Agent
- 智能体
- 自主AI