diff_minutes_against_saved
Compare a meeting minutes draft with the saved version to identify differences before overwriting, returning a unified diff preview and write mode (CREATE, OVERWRITE, NO_CHANGE).
Instructions
이미 저장된 회의록과 초안의 차이를 보여 줍니다.
같은 note_id로 두 번째 저장을 하면 기존 파일을 덮어씁니다. 무엇이 사라지는지 먼저 확인해 사고를 막는 용도입니다.
Args: note_id: 메모 id. minutes_markdown: 초안 전문. diff_preview_lines: unified diff 미리보기 줄 수 (기본 40).
Returns:
DiffResponse: diff.write_mode가 CREATE / OVERWRITE / NO_CHANGE 중 하나.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note_id | Yes | 메모 id | |
| minutes_markdown | Yes | 비교할 회의록 초안 전문 | |
| diff_preview_lines | No | 돌려줄 diff 미리보기 줄 수 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| diff | Yes | ||
| stage | Yes | 회의록 워크플로에서 지금 위치한 단계 | |
| status | Yes | 이 호출의 결과 상태 | |
| target | Yes | ||
| note_id | Yes | ||
| next_actions | No | 이어서 호출하면 좋은 도구 목록 |