fix: 캘린더 종료 시간(end_time) 지원 — 1시간 고정 제거

create_draft/create_confirmed에 end_time 파라미터 추가.
없으면 기본 1시간, 있으면 사용자 지정 종료 시간 사용.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-04-06 14:12:07 +09:00
parent 131022eb12
commit f73c46de3a
3 changed files with 12 additions and 5 deletions

View File

@@ -71,6 +71,7 @@ async def _exec_calendar(operation: str, params: dict) -> dict:
params.get("date", ""),
params.get("time", "00:00"),
params.get("description", ""),
params.get("end_time", ""),
)
elif operation == "create_confirmed":
return await calendar_tool.create_confirmed(params)