plano/tests/rest/hurl/domain_param_schedule_meeting_tool.py
2025-03-18 12:08:02 -07:00

38 lines
1.3 KiB
Python

tools = [
{
"name": "schedule_meeting",
"description": "Schedule a meeting",
"parameters": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "The subject of the meeting",
},
"start_date": {
"type": "string",
"description": "The start date of the meeting",
},
"start_time": {
"type": "string",
"description": "The start time of the meeting",
},
"participants": {
"type": "array",
"items": {"type": "string"},
"description": "Email addresses of participants",
},
"duration": {
"type": "string",
"description": "The duration of the meeting",
"default": "1 hour",
},
"location": {
"type": "string",
"description": "The location of the meeting",
},
},
"required": ["subject", "start_date", "start_time", "participants"],
},
}
]