-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools_config.json
More file actions
75 lines (75 loc) · 2.46 KB
/
Copy pathtools_config.json
File metadata and controls
75 lines (75 loc) · 2.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"tools": [
{
"tool_name": "works_list",
"description": "Returns a list of work items matching the request",
"arguments": [
{"name": "applies_to_part", "type": "array[string]"},
{"name": "created_by", "type": "array[string]"},
{"name": "issue.priority", "type": "array[string]"},
{"name": "issue.rev_orgs", "type": "array[string]"},
{"name": "limit", "type": "int"},
{"name": "owned_by", "type": "array[string]"},
{"name": "stage.name", "type": "array[string]"},
{"name": "ticket.needs_response", "type": "bool"},
{"name": "ticket.rev_org", "type": "array[string]"},
{"name": "ticket.severity", "type": "array[string]"},
{"name": "ticket.source_channel", "type": "array[string]"},
{"name": "type", "type": "array[string]"}
]
},
{
"tool_name": "summarize_objects",
"description": "Summarizes a list of objects",
"arguments": [
{"name": "objects", "type": "array[object]"}
]
},
{
"tool_name": "prioritize_objects",
"description": "Returns a list of objects sorted by priority",
"arguments": [
{"name": "objects", "type": "array[object]"}
]
},
{
"tool_name": "add_work_items_to_sprint",
"description": "Adds the given work items to the sprint",
"arguments": [
{"name": "work_ids", "type": "array[string]"},
{"name": "sprint_id", "type": "string"}
]
},
{
"tool_name": "get_sprint_id",
"description": "Returns the ID of the current sprint",
"arguments": []
},
{
"tool_name": "get_similar_work_items",
"description": "Returns a list of work items that are similar to the given work item",
"arguments": [
{"name": "work_id", "type": "string"}
]
},
{
"tool_name": "search_object_by_name",
"description": "Given a search string, returns the id of a matching object",
"arguments": [
{"name": "query", "type": "string"}
]
},
{
"tool_name": "create_actionable_tasks_from_text",
"description": "Given a text, extracts actionable insights and creates tasks for them",
"arguments": [
{"name": "text", "type": "string"}
]
},
{
"tool_name": "who_am_i",
"description": "Returns the ID of the current user",
"arguments": []
}
]
}