실제 자동화 사례
- PR 리뷰 에이전트: 코드 분석 → 이슈 발견 → 수정 PR 생성
- 고객 지원 에이전트: 티켓 분류 → 정보 검색 → 답변 작성
- 데이터 파이프라인 에이전트: 스키마 변경 감지 → 파이프라인 수정
아키텍처
const agent = new AutonomousAgent({
model: "claude-4-5-sonnet",
tools: [
githubTool,
slackTool,
dbQueryTool,
jiraTool,
],
guardrails: {
maxActions: 20,
requireApproval: ["delete", "deploy"],
costLimit: 5.00,
},
memory: new PersistentMemory(),
});
댓글 0