Computer Use란
Claude가 스크린샷을 보고 마우스/키보드를 조작하여 컴퓨터 작업을 수행합니다.
API 사용
const response = await anthropic.messages.create({
model: "claude-sonnet-4-20250514",
tools: [{
type: "computer_20250124",
name: "computer",
display_width_px: 1920,
display_height_px: 1080,
}],
messages: [{
role: "user",
content: "브라우저에서 example.com을 열고 로그인해줘"
}]
});
// Claude가 스크린샷을 분석하고
// 클릭/타이핑 좌표를 반환활용 사례
- 웹 자동화 테스트
- 레거시 시스템 연동
- 데이터 수집
댓글 0