mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-17 06:58:09 +01:00
Add in bare bones yet functional HR goal: goal_hr_schedule_pto
This commit is contained in:
17
tools/calendar_conflict.py
Normal file
17
tools/calendar_conflict.py
Normal file
@@ -0,0 +1,17 @@
|
||||
def calendar_conflict(args: dict) -> dict:
|
||||
|
||||
check_self = args.get("check_self_calendar")
|
||||
check_team = args.get("check_team_calendar")
|
||||
|
||||
conflict_list = []
|
||||
conflict = {
|
||||
"calendar": "self",
|
||||
"title": "Meeting with Karen",
|
||||
"date": "2025-12-02",
|
||||
"time": "10:00AM",
|
||||
}
|
||||
conflict_list.append(conflict)
|
||||
|
||||
return {
|
||||
"conflicts": conflict_list,
|
||||
}
|
||||
Reference in New Issue
Block a user