Files
nexus/wiki/entities/Agentic-AI.md
2026-04-28 00:02:50 +08:00

108 lines
4.5 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: entity
tags:
- ai
- devops
- automation
sources: [designing-for-agentic-ai, how-agentic-ai-can-help-for-cloud-devops]
last_updated: 2026-04-27
---
# Agentic AI
## Definition
Agentic AI (Agentic Artificial Intelligence) 是具有**自主决策和任务执行能力**的 AI 系统,能够感知环境、规划行动、执行任务并从反馈中学习。与传统 AI 不同Agentic AI 不仅响应查询,而是能够自主完成复杂的多步骤工作流。
## Aliases
- Autonomous AI
- AI Agents
- AI Automation
- Intelligent Automation
## Core Capabilities
| Capability | Description | Example |
|------------|-------------|---------|
| **感知 (Perceive)** | 感知环境和数据 | 监控云指标、日志分析 |
| **规划 (Plan)** | 制定行动策略 | 部署策略选择、回滚决策 |
| **执行 (Act)** | 自主执行任务 | 自动修复、配置变更 |
| **学习 (Learn)** | 从反馈中优化 | 历史模式学习、预测性维护 |
## Agentic AI vs Traditional AI
| Dimension | Traditional AI | Agentic AI |
|-----------|---------------|------------|
| Interaction | Request-Response | Goal-Directed |
| Autonomy | Low | High |
| Task Duration | Single Turn | Multi-Step Workflow |
| Human Oversight | Required | Minimal (Guardrails) |
| Adaptability | Static | Dynamic |
## Applications in Cloud DevOps
Agentic AI 在 Cloud DevOps 中的 7 大应用领域:
1. **[[Self-Healing Systems]]** — 自动检测异常并修复
2. **[[Root Cause Analysis (RCA)]]** — AI 驱动的根因分析
3. **[[Predictive Maintenance]]** — 基于历史模式预防故障
4. **[[Deployment Automation]]** — AI 作为 Release Manager
5. **[[Rightsizing]]** — 智能成本优化
6. **[[Automated Security Audit]]** — 持续安全态势管理
7. **[[AI ChatOps]]** — 自然语言运维协作
## Agentic AI 产品设计五原则
> 以下原则来自 [[designing-for-agentic-ai]],是从产品设计视角对 Agentic AI 的补充:
1. **Transparency透明度**可视化AI任务进度提供推理过程摘要让用户理解AI如何做决策
2. **Control控制感**允许用户停止AI任务、撤销AI操作、设置AI行为偏好始终让用户保持控制感
3. **Personalization个性化**用历史行为预测未来需求允许用户对AI表现提供反馈
4. **Conversation对话式交互**用自然语言交互提供AI输入理解方式的反馈
5. **Anticipation主动预测**AI预判用户需求同时提供调整AI自主权等级的控制项
> 核心洞察:用户不应成为被动的旁观者——**观察AI决策过程本身就是一种交互形式**。用户虽未点击按钮,但仍在评估、可能介入。
## Architecture Pattern
```
Agentic AI System:
┌─────────────────────────────────────────────────┐
│ Agentic AI │
├─────────────────────────────────────────────────┤
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │感知层 │ │规划层 │ │执行层 │ │
│ │Sensors │ │Planner │ │Executor │ │
│ └────┬────┘ └────┬────┘ └────┬────┘ │
│ │ │ │ │
│ ┌────┴────────────┴────────────┴────┐ │
│ │ Tool Integration │ │
│ │ (CloudWatch, IAM, K8s, etc.) │ │
│ └──────────────────────────────────┘ │
└─────────────────────────────────────────────────┘
```
## Related Concepts
- [[Self-Healing Systems]]
- [[Root Cause Analysis (RCA)]]
- [[Predictive Maintenance]]
- [[Deployment Automation]]
- [[Rightsizing]]
- [[Automated Security Audit]]
- [[AI ChatOps]]
- [[What-If Simulation]]
- [[AIOps]]
## Related Sources
- [[how-agentic-ai-can-help-for-cloud-devops]]
## Related Entities
- [[Kubernetes]] — 主要管理和修复目标
- [[Terraform]] — IaC 审查对象
- [[CloudWatch]] — 监控数据来源