-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal_tools.json
More file actions
95 lines (95 loc) · 3.48 KB
/
Copy pathglobal_tools.json
File metadata and controls
95 lines (95 loc) · 3.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[
{
"type": "function",
"function": {
"name": "get_tools",
"description": "Get a different set of tools.",
"parameters": {
"type": "object",
"properties": {
"tool_set": {
"type": "string",
"oneOf": [
{
"const":"web_search_tools",
"description": "View user screen, web search, weather forecast, wiki search and other basic tools."
},
{
"const": "desktop_tools",
"description": "Control desktop applications, performs UI actions, clicks, and types to open apps, navigate for user."
},
{
"const": "file_modification_tools",
"description": "Create, write, modify, delete files and directories."
},
{
"const": "read_file_tools",
"description": "Read different types of files- images, pdf, docx, csv, txt, log etc."
},
{
"const": "coding_tools",
"description": "Understand, edit, search, or diagnose source code and Jupyter notebook cells. Not for ordinary file or directory housekeeping."
}
],
"description":"Tool set to switch to."
}
},
"required": ["tool_set"]
}
}
},
{
"type":"function",
"function":{
"name":"view_screen",
"description":"View user's primary computer screen.",
"parameters":{
"type":"object",
"properties":{}
}
}
},
{
"type":"function",
"function":{
"name":"add_memory",
"description":"Append a new memory block to memory.",
"parameters":{
"type":"object",
"properties":{
"memory":{"type":"string","description":"The Markdown memory block to append."}
},
"required":["memory"]
}
}
},
{
"type":"function",
"function":{
"name":"remove_memory",
"description":"Remove one exact memory block from the user's memory file.",
"parameters":{
"type":"object",
"properties":{
"memory":{"type":"string","description":"The exact Markdown memory block to remove. Case sensitive"}
},
"required":["memory"]
}
}
},
{
"type":"function",
"function":{
"name":"patch_memory",
"description":"Replace the first exact old value in the user's memory with a new value.",
"parameters":{
"type":"object",
"properties":{
"old_value":{"type":"string","description":"The exact value in memory to replace."},
"new_value":{"type":"string","description":"The replacement value."}
},
"required":["old_value","new_value"]
}
}
}
]