Views
No views yet
1{
2 "name": "create_event",
3 "description": "Create a new event in the calendar",
4 "parameters": {
5 "type": "object",
6 "properties": {
7 "title": {
8 "type": "string",
9 "description": "The title of the event"
10 },
11 "date": {
12 "type": "string",
13 "format": "date",
14 "description": "The date of the event"
15 },
16 "time": {
17 "type": "string",
18 "format": "time",
19 "description": "The time of the event"
20 },
21 "location": {
22 "type": "string",
23 "description": "The location of the event (optional)"
24 }
25 },
26 "required": [
27 "title",
28 "date",
29 "time"
30 ]
31 }
32}
1{
2 "name": "calculate_shipping_cost",
3 "description": "Calculate the shipping cost for a package",
4 "parameters": {
5 "type": "object",
6 "properties": {
7 "weight": {
8 "type": "number",
9 "description": "The weight of the package in kilograms"
10 },
11 "destination": {
12 "type": "string",
13 "description": "The destination address"
14 }
15 },
16 "required": [
17 "weight",
18 "destination"
19 ]
20 }
21}