Claude 可以通過電腦使用工具與電腦環境互動,該工具提供截圖功能和滑鼠/鍵盤控制,用於自主桌面互動。在 WebArena(一個用於跨真實網站自主網路導航的基準測試)上,Claude 在單一代理系統中達到了最先進的結果,展示了完整端到端完成多步驟瀏覽器任務的強大能力。
This feature is eligible for Zero Data Retention (ZDR). When your organization has a ZDR arrangement, data sent through this feature is not stored after the API response is returned.
電腦使用是一項測試版功能,使 Claude 能夠與桌面環境互動。此工具提供:
雖然電腦使用可以與 bash 和文本編輯器等其他工具結合,以實現更全面的自動化工作流程,但電腦使用特別指的是電腦使用工具查看和控制桌面環境的能力。
有關模型支援,請參閱 工具參考。
電腦使用是一項測試版功能,具有與標準 API 功能不同的獨特風險。與網際網路互動時,這些風險會增加。
為了最小化風險,請考慮採取以下預防措施:
在某些情況下,Claude 會遵循內容中發現的命令,即使這與使用者的指示相衝突。例如,網頁上或圖像中包含的 Claude 指示可能會覆蓋指示或導致 Claude 出錯。採取預防措施將 Claude 與敏感資料和操作隔離,以避免與提示注入相關的風險。
該模型已經過訓練以抵抗這些提示注入,並添加了額外的防禦層。如果您使用電腦使用工具,分類器將自動在您的提示上執行,以標記潛在的提示注入實例。當這些分類器在螢幕截圖中識別出潛在的提示注入時,它們將自動引導模型在繼續下一步操作之前要求使用者確認。這種額外的保護對於每個使用案例都不是理想的(例如,沒有人工參與的使用案例),因此如果您想選擇退出並將其關閉,請 聯絡支援。
即使有分類器防禦層,這些預防措施仍然很重要。
在您自己的產品中啟用電腦使用之前,請告知最終使用者相關風險並獲得他們的同意。
使用電腦使用參考實現快速入門,該實現包括網路介面、Docker 容器、範例工具實現和代理迴圈。
注意:該實現已更新,包括適用於 Claude 4 模型和 Claude Sonnet 3.7 的新工具。請確保拉取最新版本的儲存庫以訪問這些新功能。
以下是如何開始使用電腦使用的方法:
client = anthropic.Anthropic()
response = client.beta.messages.create(
model="claude-opus-4-7", # or another compatible model
max_tokens=1024,
tools=[
{
"type": "computer_20251124",
"name": "computer",
"display_width_px": 1024,
"display_height_px": 768,
"display_number": 1,
},
{"type": "text_editor_20250728", "name": "str_replace_based_edit_tool"},
{"type": "bash_20250124", "name": "bash"},
],
messages=[{"role": "user", "content": "Save a picture of a cat to my desktop."}],
betas=["computer-use-2025-11-24"],
)
print(response)測試版標頭僅對電腦使用工具是必需的。
上面的範例顯示了所有三個工具一起使用,這需要測試版標頭,因為它包括電腦使用工具。
為 Claude 提供電腦使用工具和使用者提示
Claude 決定使用電腦使用工具
stop_reason 為 tool_use,表示 Claude 的意圖。提取工具輸入,在電腦上評估工具,並返回結果
tool_result 內容塊的新 user 訊息繼續對話。Claude 繼續調用電腦使用工具,直到完成任務
tool_use stop_reason 回應,您應該返回第 3 步。步驟 3 和 4 在沒有使用者輸入的情況下重複稱為「代理迴圈」(即 Claude 以工具使用請求回應,您的應用程式以評估該請求的結果回應 Claude)。
電腦使用需要一個沙盒計算環境,Claude 可以在其中安全地與應用程式和網路互動。此環境包括:
虛擬顯示:虛擬 X11 顯示伺服器(使用 Xvfb),它呈現 Claude 將通過螢幕截圖看到的桌面介面,並通過滑鼠/鍵盤操作進行控制。
桌面環境:在 Linux 上運行的輕量級 UI,具有視窗管理器(Mutter)和面板(Tint2),為 Claude 提供一致的圖形介面以進行互動。
應用程式:預安裝的 Linux 應用程式,如 Firefox、LibreOffice、文本編輯器和檔案管理器,Claude 可以使用它們來完成任務。
工具實現:集成代碼,將 Claude 的抽象工具請求(如「移動滑鼠」或「截圖」)轉換為虛擬環境中的實際操作。
代理迴圈:一個程式,處理 Claude 和環境之間的通訊,將 Claude 的操作發送到環境,並將結果(螢幕截圖、命令輸出)返回給 Claude。
當您使用電腦使用時,Claude 不會直接連接到此環境。相反,您的應用程式:
為了安全和隔離,參考實現在 Docker 容器內運行所有這些,具有適當的連接埠映射,用於查看和與環境互動。
提供了 參考實現,其中包含快速開始使用電腦使用所需的一切:
電腦使用的核心是「代理迴圈」- 一個循環,其中 Claude 請求工具操作,您的應用程式執行它們,並將結果返回給 Claude。以下是一個簡化的範例:
async def sampling_loop(
*,
model: str,
messages: list[dict],
api_key: str,
max_tokens: int = 4096,
tool_version: str,
thinking_budget: int | None = None,
max_iterations: int = 10, # Add iteration limit to prevent infinite loops
):
"""
A simple agent loop for Claude computer use interactions.
This function handles the back-and-forth between:
1. Sending user messages to Claude
2. Claude requesting to use tools
3. Your app executing those tools
4. Sending tool results back to Claude
"""
# Set up tools and API parameters
client = Anthropic(api_key=api_key)
beta_flag = (
"computer-use-2025-11-24"
if "20251124" in tool_version
else "computer-use-2025-01-24"
)
text_editor_type = (
"text_editor_20250728"
if "20251124" in tool_version
else f"text_editor_{tool_version}"
)
# Configure tools - you should already have these initialized elsewhere
tools = [
{
"type": f"computer_{tool_version}",
"name": "computer",
"display_width_px": 1024,
"display_height_px": 768,
},
{"type": text_editor_type, "name": "str_replace_based_edit_tool"},
{"type": "bash_20250124", "name": "bash"},
]
# Main agent loop (with iteration limit to prevent runaway API costs)
iterations = 0
while True and iterations < max_iterations:
iterations += 1
# Set up optional thinking parameter (for Claude Sonnet 3.7)
thinking = None
if thinking_budget:
thinking = {"type": "enabled", "budget_tokens": thinking_budget}
# Call the Claude API
response = client.beta.messages.create(
model=model,
max_tokens=max_tokens,
messages=messages,
tools=tools,
betas=[beta_flag],
thinking=thinking,
)
# Add Claude's response to the conversation history
response_content = response.content
messages.append({"role": "assistant", "content": response_content})
# Check if Claude used any tools
tool_results = []
for block in response_content:
if block.type == "tool_use":
# In a real app, you would execute the tool here
# For example: result = run_tool(block.name, block.input)
result = {"result": "Tool executed successfully"}
# Format the result for Claude
tool_results.append(
{"type": "tool_result", "tool_use_id": block.id, "content": result}
)
# If no tools were used, Claude is done - return the final messages
if not tool_results:
return messages
# Add tool results to messages for the next iteration with Claude
messages.append({"role": "user", "content": tool_results})迴圈繼續,直到 Claude 回應時不請求任何工具(任務完成)或達到最大迭代限制。此保護措施可防止可能導致意外 API 成本的潛在無限迴圈。
在閱讀本文檔的其餘部分之前,請先嘗試參考實現。
以下是一些獲得最佳品質輸出的提示:
在每個步驟之後,截圖並仔細評估您是否達到了正確的結果。明確顯示您的思考:「我已評估步驟 X...」如果不正確,請重試。只有在您確認步驟執行正確後,才應繼續下一步。<robot_credentials>)為其提供使用者名稱和密碼。在需要登入的應用程式中使用電腦使用會增加由於提示注入而導致不良結果的風險。在向模型提供登入認證之前,請查看 關於緩解提示注入的指南。如果您反覆遇到一組明確的問題,或提前知道 Claude 需要完成的任務,請使用系統提示為 Claude 提供明確的提示或有關如何成功完成任務的指示。
對於跨越多個會話的代理,在每個會話開始時運行端到端驗證,而不僅在實現後運行。基於瀏覽器的檢查會捕捉來自先前會話的迴歸,而僅代碼級別的審查會遺漏。有關詳細信息,請參閱 長期運行代理的有效工具。
當通過 Claude API 請求 Anthropic 架構工具之一時,會生成電腦使用特定的系統提示。它類似於 工具使用系統提示,但以以下內容開頭:
您可以訪問一組函數來幫助回答使用者的問題。這包括訪問沙盒計算環境。您目前無法檢查檔案或與外部資源互動,除非通過調用以下函數。
與常規工具使用一樣,使用者提供的 system_prompt 欄位仍然受到尊重,並在組合系統提示的構造中使用。
電腦使用工具支持這些操作:
基本操作(所有版本)
[x, y] 處點擊增強操作(computer_20250124)
在 Claude 4 模型和 Claude Sonnet 3.7 中可用:
增強操作(computer_20251124)
在 Claude Opus 4.7、Claude Opus 4.6、Claude Sonnet 4.6 和 Claude Opus 4.5 中可用:
computer_20250124 中的所有操作enable_zoom: true。採用 region 參數,座標為 [x1, y1, x2, y2],定義要檢查的區域的左上角和右下角。| 參數 | 必需 | 描述 |
|---|---|---|
type | 是 | 工具版本(computer_20251124 或 computer_20250124) |
name | 是 | 必須為「computer」 |
display_width_px | 是 | 顯示寬度(以像素為單位) |
display_height_px | 是 | 顯示高度(以像素為單位) |
display_number | 否 | X11 環境的顯示編號 |
enable_zoom | 否 | 啟用縮放操作(僅 computer_20251124)。設置為 true 以允許 Claude 縮放到特定螢幕區域。預設值:false |
重要:電腦使用工具必須由您的應用程式明確執行 - Claude 無法直接執行它。您負責根據 Claude 的請求實現螢幕截圖捕捉、滑鼠移動、鍵盤輸入和其他操作。
有關將電腦使用與擴展思考結合,請參閱 擴展思考。
要在電腦使用旁邊添加其他工具,請將它們包括在同一 tools 陣列中。上面的快速入門顯示了此模式,其中包含 bash 工具 和 文本編輯器工具。您可以以相同的方式添加您自己的 自訂工具定義。
參考實作旨在幫助您開始使用電腦使用功能。它包含了讓 Claude 使用電腦所需的所有元件。不過,您可以建立自己的電腦使用環境來滿足您的需求。您需要:
tool_use 結果的代理迴圈電腦使用工具實作為無架構工具。使用此工具時,您不需要像其他工具那樣提供輸入架構;架構內建於 Claude 的模型中,無法修改。
設定您的運算環境
建立虛擬顯示器或連接到 Claude 將與之互動的現有顯示器。這通常涉及設定 Xvfb(X 虛擬幀緩衝區)或類似技術。
實作動作處理程式
建立函數來處理 Claude 可能要求的每種動作類型:
def handle_computer_action(action_type, params):
if action_type == "screenshot":
return capture_screenshot()
elif action_type == "left_click":
x, y = params["coordinate"]
return click_at(x, y)
elif action_type == "type":
return type_text(params["text"])
# ... handle other actions處理 Claude 的工具呼叫
從 Claude 的回應中提取並執行工具呼叫:
for content in response.content:
if content.type == "tool_use":
action = content.input["action"]
result = handle_computer_action(action, content.input)
# Return result to Claude
tool_result = {
"type": "tool_result",
"tool_use_id": content.id,
"content": result,
}實作代理迴圈
建立一個迴圈,持續執行直到 Claude 完成任務:
while True:
response = client.beta.messages.create(
model="claude-opus-4-7",
max_tokens=4096,
messages=messages,
tools=tools,
betas=["computer-use-2025-11-24"],
)
# Check if Claude used any tools
tool_results = process_tool_calls(response)
if not tool_results:
# No more tool use, task complete
break
# Continue conversation with tool results
messages.append({"role": "user", "content": tool_results})實作電腦使用工具時,可能會發生各種錯誤。以下是處理方式:
Claude Opus 4.7 支援長邊最多 2576 像素,其座標與影像像素的比例為 1
(不需要進行縮放因子轉換)。下面的 1568 像素指導適用於較早的模型。API 將影像限制為最長邊最多 1568 像素,總計約 1.15 百萬像素(詳見影像調整大小)。例如,1512x982 的螢幕會縮小到約 1330x864。Claude 分析這個較小的影像並在該空間中傳回座標,但您的工具在原始螢幕空間中執行點擊。
除非您處理座標轉換,否則這可能會導致 Claude 的點擊座標錯過其目標。
若要修正此問題,請自行調整螢幕擷取大小並將 Claude 的座標縮放回去:
import math
def get_scale_factor(width, height):
"""Calculate scale factor to meet API constraints."""
long_edge = max(width, height)
total_pixels = width * height
long_edge_scale = 1568 / long_edge
total_pixels_scale = math.sqrt(1_150_000 / total_pixels)
return min(1.0, long_edge_scale, total_pixels_scale)
# When capturing screenshot
scale = get_scale_factor(screen_width, screen_height)
scaled_width = int(screen_width * scale)
scaled_height = int(screen_height * scale)
# Resize image to scaled dimensions before sending to Claude
screenshot = capture_and_resize(scaled_width, scaled_height)
# When handling Claude's coordinates, scale them back up
def execute_click(x, y):
screen_x = x / scale
screen_y = y / scale
perform_click(screen_x, screen_y)電腦使用功能處於測試版。雖然 Claude 的功能是最先進的,但開發人員應該了解其限制:
left_mouse_down、left_mouse_up 和新的修飾鍵支援。透過使用這些細粒度控制和將修飾鍵與點擊結合,儲存格選擇可以更可靠。始終仔細檢查並驗證 Claude 的電腦使用動作和日誌。不要在沒有人工監督的情況下使用 Claude 進行需要完美精度或敏感使用者資訊的任務。
電腦使用是用戶端工具。所有螢幕擷取、滑鼠動作、鍵盤輸入和工作階段中涉及的任何檔案都在您的環境中捕獲和儲存,而不是由 Anthropic 儲存。Anthropic 在 API 呼叫過程中即時處理螢幕擷取影像和動作要求,但在傳回回應後不會保留它們。
因為您的應用程式控制電腦使用資料的儲存位置和方式,電腦使用符合 ZDR 資格。如需所有功能的 ZDR 資格,請參閱 API 和資料保留。
Computer use follows the standard tool use pricing. When using the computer use tool:
System prompt overhead: The computer use beta adds 466-499 tokens to the system prompt
Computer use tool token usage:
| Model | Input tokens per tool definition |
|---|---|
| Claude 4.x models | 735 tokens |
| Claude Sonnet 3.7 (deprecated) | 735 tokens |
Additional token consumption:
If you're also using bash or text editor tools alongside computer use, those tools have their own token costs as documented in their respective pages.
Was this page helpful?