-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools.py
100 lines (96 loc) · 2.81 KB
/
tools.py
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
96
97
98
99
100
tools = [
# Read from a file
{
"type": "function",
"function": {
"name": "read_from_file",
"description": "Read content from a specified file",
"parameters": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "The name of the file to read from",
},
},
"required": ["filename"],
},
},
},
# Write to a file
{
"type": "function",
"function": {
"name": "write_to_file",
"description": "Write content to a specified file",
"parameters": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "The name of the file",
},
"content": {
"type": "string",
"description": "The content to write",
},
},
"required": ["filename", "content"],
},
},
},
# List files in a directory
{
"type": "function",
"function": {
"name": "list_files",
"description": "List files in a specified directory",
"parameters": {
"type": "object",
"properties": {
"directory": {
"type": "string",
"description": "The directory to list files from",
},
},
"required": ["directory"],
},
},
},
# Create a directory
{
"type": "function",
"function": {
"name": "create_directory",
"description": "Create a directory",
"parameters": {
"type": "object",
"properties": {
"directory": {
"type": "string",
"description": "The name of the directory to create",
},
},
"required": ["directory"],
},
},
},
# Delete a file
{
"type": "function",
"function": {
"name": "delete_file",
"description": "Delete a specified file",
"parameters": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "The name of the file to delete",
},
},
"required": ["filename"],
},
},
},
]