Zubnet AI学习Wiki › Autonomous Agent
Using AI

Autonomous Agent

AI Agent, Agentic AI
一个能独立规划、决策、执行多步任务、人类监督最少的 AI 系统。给一个高层目标(“研究竞争者并写一份报告”),一个自主 agent 把它拆成步骤、使用工具(网络搜索、代码执行、文件管理)、处理错误、交付结果。自主程度从“每一步都请求许可”到“就做并回报”。

为什么重要

自主 agent 是 chatbot 和 copilot 之外的下一个演进。Chatbot 回答问题。Copilot 协助任务。Agent 独立完成任务。经济潜力巨大 — 能处理常规知识工作(研究、数据分析、客服、代码审查)的 agent,成本和时间只是一小部分。但可靠性和安全挑战仍然显著。

Deep Dive

The agent loop: (1) observe the current state (what has been done, what information is available), (2) plan the next action (using the LLM's reasoning), (3) execute the action (tool call, code execution, API request), (4) observe the result, (5) decide whether to continue, adjust, or complete. This observe-plan-act loop repeats until the task is done or the agent gets stuck and asks for help.

Reliability Is the Bottleneck

The fundamental challenge: each step in an agent's workflow has some probability of error (wrong tool choice, incorrect reasoning, misinterpreted result). Over a 10-step workflow, even a 95% per-step accuracy compounds to only 60% overall success. This is why current agents work best for tasks that are somewhat forgiving of individual step errors (research, brainstorming) and struggle with tasks requiring precision at every step (financial transactions, legal documents).

Human-in-the-Loop

Most production agent deployments include human oversight: the agent proposes actions, a human approves or corrects, and the agent continues. This "human-in-the-loop" approach sacrifices full autonomy for reliability. The trend is toward wider autonomy for low-risk actions (reading files, searching) and human approval for high-risk ones (sending emails, making purchases, modifying production systems). The right level of autonomy depends on the cost of errors.

相关概念

← 所有术语
← Automation Autoregressive →