-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtools.call.request.json
More file actions
45 lines (45 loc) · 1.19 KB
/
tools.call.request.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$id": "https://gabp.dev/schema/1.0/methods/tools.call.request.json",
"$schema": "https://json-schema.org/draft-07/schema#",
"title": "tools/call Request",
"description": "Request schema for calling/invoking a specific tool",
"type": "object",
"required": ["v", "id", "type", "method", "params"],
"properties": {
"v": {
"const": "gabp/1",
"description": "Protocol version identifier"
},
"id": {
"type": "string",
"format": "uuid",
"description": "Unique request identifier"
},
"type": {
"const": "request",
"description": "Message type"
},
"method": {
"const": "tools/call",
"description": "Method name"
},
"params": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"pattern": "^[a-z][a-z0-9_-]*(/[a-z][a-z0-9_-]*)+$",
"description": "Canonical native GABP tool name to invoke"
},
"arguments": {
"type": "object",
"default": {},
"description": "Tool-specific arguments"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}