plano/tests/rest/hurl/req_param_schedule_meeting_tool.py

39 lines
1.3 KiB
Python
Raw Normal View History

2025-03-18 11:55:21 -07:00
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"],
},
}
]