整理文件路径:Technical→AI/

This commit is contained in:
2026-04-14 18:54:05 +08:00
parent c9767442ca
commit b6a3ed5f77
145 changed files with 4249 additions and 83 deletions

View File

@@ -0,0 +1,40 @@
---
id: agentic-ai
title: "Agentic AI"
type: concept
tags: [AI, agent, autonomous, proactive]
sources:
- "[[Designing for Agentic AI]]"
last_updated: 2025-03-02
---
## Definition
Agentic AI是能够自主行动和决策的AI系统能够预判用户需求并主动执行任务。
## Key Characteristics
- **主动预判**:不需要用户明确指令,主动分析并行动
- **实时反馈**:持续向用户展示决策过程
- **用户控制**确保用户对AI行为有最终决定权
- **行动执行**:不仅生成内容,而是执行具体操作
## Five Design Principles
1. **透明性**让用户理解AI的决策过程
2. **控制权**用户始终保持对AI行为的最终决定权
3. **个性化**AI适应用户的偏好和习惯
4. **对话**:通过自然语言进行持续交互
5. **预判**AI主动识别并满足用户潜在需求
## vs GenAI
| 维度 | GenAI | Agentic AI |
|------|-------|------------|
| 核心能力 | 内容生成 | 行动执行 |
| 交互模式 | 被动响应 | 主动预判 |
| 反馈机制 | 单次响应 | 实时反馈 |
## Connections
- [[Agentic AI]] ← extends ← [[GenAI]]
- [[AI产品设计]] ← uses ← [[Agentic AI设计原则]]