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 →