Files
nexus/wiki/concepts/Agentic-AI.md

47 lines
1.9 KiB
Markdown
Raw 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.
---
title: "Agentic AI"
type: concept
tags: []
sources:
- designing-for-agentic-ai
- multi-agent-system-reliability
last_updated: 2026-04-27
---
## Definition
Agentic AI智能体AI是一种能够**自主行动、主动决策**的AI系统。与传统AI不同它能够
- 与环境进行真实交互
- 基于上下文做出决策
- 主动预判用户需求
- 在无需持续人工干预的情况下完成任务
类似于拥有**24/7全天候工作的私人代理**,而非仅响应指令的工具。
## 与 GenAI 的区别
| 维度 | GenAI生成式AI | Agentic AI智能体AI |
|------|------------------|----------------------|
| 核心能力 | 创建内容(文本/图像/音乐) | 行动、决策、预判 |
| 交互模式 | 被动响应用户请求 | 主动发起行动 |
| 典型场景 | 生成诗歌、写文章 | 预约会议、发送邀请 |
| 设计范式 | 响应式交互 | 实时反馈式交互 |
## Agentic AI 产品设计五原则
1. **Transparency透明度**可视化AI任务进度提供推理过程摘要让用户理解AI如何做决策
2. **Control控制感**允许用户停止AI任务、撤销AI操作、设置AI行为偏好
3. **Personalization个性化**用历史行为预测未来需求允许用户对AI表现提供反馈
4. **Conversation对话式交互**用自然语言交互提供AI输入理解方式的反馈
5. **Anticipation主动预测**AI预判用户需求同时提供调整AI自主权等级的控制项
## 核心设计洞察
> "Observing the AI's decision-making process, understanding its 'thinking,' is a form of interaction in itself."
用户不应成为被动的旁观者——**观察AI决策过程本身就是一种交互形式**。用户虽未点击按钮,但仍在评估、可能介入。
## Related
- [[designing-for-agentic-ai]] — 本概念的主要来源
- [[GenAI]] — Agentic AI 的对比基准生成式AI