smashingtags commited on
Commit
fea8d0f
·
verified ·
1 Parent(s): 2d18750

Upload tools.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. tools.json +453 -0
tools.json ADDED
@@ -0,0 +1,453 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "type": "function",
4
+ "function": {
5
+ "name": "get_system_info",
6
+ "description": "Get system hardware and OS summary: hostname, CPU model, cores, memory total/used, swap, uptime, load average, kernel, OS version",
7
+ "parameters": {
8
+ "type": "object",
9
+ "properties": {}
10
+ }
11
+ }
12
+ },
13
+ {
14
+ "type": "function",
15
+ "function": {
16
+ "name": "get_system_version",
17
+ "description": "Check current Eight.ly software version",
18
+ "parameters": {
19
+ "type": "object",
20
+ "properties": {}
21
+ }
22
+ }
23
+ },
24
+ {
25
+ "type": "function",
26
+ "function": {
27
+ "name": "get_system_logs",
28
+ "description": "Get recent system log entries from journald",
29
+ "parameters": {
30
+ "type": "object",
31
+ "properties": {}
32
+ }
33
+ }
34
+ },
35
+ {
36
+ "type": "function",
37
+ "function": {
38
+ "name": "get_node_time",
39
+ "description": "Get current system time, timezone, and NTP sync status",
40
+ "parameters": {
41
+ "type": "object",
42
+ "properties": {}
43
+ }
44
+ }
45
+ },
46
+ {
47
+ "type": "function",
48
+ "function": {
49
+ "name": "get_storage_status",
50
+ "description": "List all storage devices with mount points, capacity, usage percentage, and health status",
51
+ "parameters": {
52
+ "type": "object",
53
+ "properties": {}
54
+ }
55
+ }
56
+ },
57
+ {
58
+ "type": "function",
59
+ "function": {
60
+ "name": "get_cache_status",
61
+ "description": "Get cache drive usage, mover configuration, and pending move count",
62
+ "parameters": {
63
+ "type": "object",
64
+ "properties": {}
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "type": "function",
70
+ "function": {
71
+ "name": "get_snapraid_status",
72
+ "description": "Get SnapRAID parity status including last sync time and error count",
73
+ "parameters": {
74
+ "type": "object",
75
+ "properties": {}
76
+ }
77
+ }
78
+ },
79
+ {
80
+ "type": "function",
81
+ "function": {
82
+ "name": "get_disk_health",
83
+ "description": "Get SMART health data for all physical disks",
84
+ "parameters": {
85
+ "type": "object",
86
+ "properties": {}
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "type": "function",
92
+ "function": {
93
+ "name": "get_zfs_pools",
94
+ "description": "List ZFS pools with health, capacity, and dataset info",
95
+ "parameters": {
96
+ "type": "object",
97
+ "properties": {}
98
+ }
99
+ }
100
+ },
101
+ {
102
+ "type": "function",
103
+ "function": {
104
+ "name": "list_containers",
105
+ "description": "List all Docker containers with name, image, status, CPU%, memory, ports, and IP address",
106
+ "parameters": {
107
+ "type": "object",
108
+ "properties": {}
109
+ }
110
+ }
111
+ },
112
+ {
113
+ "type": "function",
114
+ "function": {
115
+ "name": "get_container_logs",
116
+ "description": "Get recent logs for a specific Docker container",
117
+ "parameters": {
118
+ "type": "object",
119
+ "properties": {}
120
+ }
121
+ }
122
+ },
123
+ {
124
+ "type": "function",
125
+ "function": {
126
+ "name": "get_container_stats",
127
+ "description": "Get CPU, memory, network I/O stats for a specific container",
128
+ "parameters": {
129
+ "type": "object",
130
+ "properties": {}
131
+ }
132
+ }
133
+ },
134
+ {
135
+ "type": "function",
136
+ "function": {
137
+ "name": "list_docker_stacks",
138
+ "description": "List Docker Compose stacks with service count and status",
139
+ "parameters": {
140
+ "type": "object",
141
+ "properties": {}
142
+ }
143
+ }
144
+ },
145
+ {
146
+ "type": "function",
147
+ "function": {
148
+ "name": "list_docker_images",
149
+ "description": "List installed Docker images with size and tag",
150
+ "parameters": {
151
+ "type": "object",
152
+ "properties": {}
153
+ }
154
+ }
155
+ },
156
+ {
157
+ "type": "function",
158
+ "function": {
159
+ "name": "list_docker_networks",
160
+ "description": "List Docker networks with driver and subnet",
161
+ "parameters": {
162
+ "type": "object",
163
+ "properties": {}
164
+ }
165
+ }
166
+ },
167
+ {
168
+ "type": "function",
169
+ "function": {
170
+ "name": "list_docker_volumes",
171
+ "description": "List Docker volumes with driver and mount point",
172
+ "parameters": {
173
+ "type": "object",
174
+ "properties": {}
175
+ }
176
+ }
177
+ },
178
+ {
179
+ "type": "function",
180
+ "function": {
181
+ "name": "list_vms",
182
+ "description": "List all virtual machines with name, state, CPU count, memory, and VNC port",
183
+ "parameters": {
184
+ "type": "object",
185
+ "properties": {}
186
+ }
187
+ }
188
+ },
189
+ {
190
+ "type": "function",
191
+ "function": {
192
+ "name": "get_vm_stats",
193
+ "description": "Get live CPU, memory, disk I/O, and network I/O stats for a VM",
194
+ "parameters": {
195
+ "type": "object",
196
+ "properties": {}
197
+ }
198
+ }
199
+ },
200
+ {
201
+ "type": "function",
202
+ "function": {
203
+ "name": "list_vm_snapshots",
204
+ "description": "List snapshots for a specific VM",
205
+ "parameters": {
206
+ "type": "object",
207
+ "properties": {}
208
+ }
209
+ }
210
+ },
211
+ {
212
+ "type": "function",
213
+ "function": {
214
+ "name": "list_lxc_containers",
215
+ "description": "List LXC containers with name, state, IP, and PID",
216
+ "parameters": {
217
+ "type": "object",
218
+ "properties": {}
219
+ }
220
+ }
221
+ },
222
+ {
223
+ "type": "function",
224
+ "function": {
225
+ "name": "get_smb_shares",
226
+ "description": "List all SMB/CIFS file shares with path, access mode, and status",
227
+ "parameters": {
228
+ "type": "object",
229
+ "properties": {}
230
+ }
231
+ }
232
+ },
233
+ {
234
+ "type": "function",
235
+ "function": {
236
+ "name": "get_nfs_exports",
237
+ "description": "List all NFS exports with path, clients, and options",
238
+ "parameters": {
239
+ "type": "object",
240
+ "properties": {}
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "type": "function",
246
+ "function": {
247
+ "name": "get_network_interfaces",
248
+ "description": "List network interfaces with IP address, MAC address, and link status",
249
+ "parameters": {
250
+ "type": "object",
251
+ "properties": {}
252
+ }
253
+ }
254
+ },
255
+ {
256
+ "type": "function",
257
+ "function": {
258
+ "name": "get_firewall_rules",
259
+ "description": "List UFW firewall rules",
260
+ "parameters": {
261
+ "type": "object",
262
+ "properties": {}
263
+ }
264
+ }
265
+ },
266
+ {
267
+ "type": "function",
268
+ "function": {
269
+ "name": "search_apps",
270
+ "description": "Search the app store catalog by name or category",
271
+ "parameters": {
272
+ "type": "object",
273
+ "properties": {}
274
+ }
275
+ }
276
+ },
277
+ {
278
+ "type": "function",
279
+ "function": {
280
+ "name": "get_nova_models",
281
+ "description": "List installed AI models and their status",
282
+ "parameters": {
283
+ "type": "object",
284
+ "properties": {}
285
+ }
286
+ }
287
+ },
288
+ {
289
+ "type": "function",
290
+ "function": {
291
+ "name": "get_health_overview",
292
+ "description": "Get overall system health: container health, service status, disk health, and recent alerts",
293
+ "parameters": {
294
+ "type": "object",
295
+ "properties": {}
296
+ }
297
+ }
298
+ },
299
+ {
300
+ "type": "function",
301
+ "function": {
302
+ "name": "container_action",
303
+ "description": "Perform an action on a Docker container: start, stop, restart, kill, pause, or unpause",
304
+ "parameters": {
305
+ "type": "object",
306
+ "properties": {}
307
+ }
308
+ }
309
+ },
310
+ {
311
+ "type": "function",
312
+ "function": {
313
+ "name": "vm_action",
314
+ "description": "Perform an action on a virtual machine: start, stop, shutdown, restart, pause, or resume",
315
+ "parameters": {
316
+ "type": "object",
317
+ "properties": {}
318
+ }
319
+ }
320
+ },
321
+ {
322
+ "type": "function",
323
+ "function": {
324
+ "name": "lxc_action",
325
+ "description": "Perform an action on an LXC container: start, stop, restart, freeze, or unfreeze",
326
+ "parameters": {
327
+ "type": "object",
328
+ "properties": {}
329
+ }
330
+ }
331
+ },
332
+ {
333
+ "type": "function",
334
+ "function": {
335
+ "name": "create_smb_share",
336
+ "description": "Create a new SMB/CIFS file share",
337
+ "parameters": {
338
+ "type": "object",
339
+ "properties": {}
340
+ }
341
+ }
342
+ },
343
+ {
344
+ "type": "function",
345
+ "function": {
346
+ "name": "create_nfs_export",
347
+ "description": "Create a new NFS export",
348
+ "parameters": {
349
+ "type": "object",
350
+ "properties": {}
351
+ }
352
+ }
353
+ },
354
+ {
355
+ "type": "function",
356
+ "function": {
357
+ "name": "install_app",
358
+ "description": "Install a Docker app from the catalog by name",
359
+ "parameters": {
360
+ "type": "object",
361
+ "properties": {}
362
+ }
363
+ }
364
+ },
365
+ {
366
+ "type": "function",
367
+ "function": {
368
+ "name": "run_snapraid_sync",
369
+ "description": "Start a SnapRAID parity sync operation",
370
+ "parameters": {
371
+ "type": "object",
372
+ "properties": {}
373
+ }
374
+ }
375
+ },
376
+ {
377
+ "type": "function",
378
+ "function": {
379
+ "name": "run_smart_test",
380
+ "description": "Run a SMART self-test on all drives",
381
+ "parameters": {
382
+ "type": "object",
383
+ "properties": {}
384
+ }
385
+ }
386
+ },
387
+ {
388
+ "type": "function",
389
+ "function": {
390
+ "name": "spin_down_disks",
391
+ "description": "Spin down idle hard drives to save power",
392
+ "parameters": {
393
+ "type": "object",
394
+ "properties": {}
395
+ }
396
+ }
397
+ },
398
+ {
399
+ "type": "function",
400
+ "function": {
401
+ "name": "create_vm_snapshot",
402
+ "description": "Create a snapshot of a virtual machine",
403
+ "parameters": {
404
+ "type": "object",
405
+ "properties": {}
406
+ }
407
+ }
408
+ },
409
+ {
410
+ "type": "function",
411
+ "function": {
412
+ "name": "pull_docker_image",
413
+ "description": "Pull a Docker image by name and tag",
414
+ "parameters": {
415
+ "type": "object",
416
+ "properties": {}
417
+ }
418
+ }
419
+ },
420
+ {
421
+ "type": "function",
422
+ "function": {
423
+ "name": "create_backup",
424
+ "description": "Create a backup of system configuration files",
425
+ "parameters": {
426
+ "type": "object",
427
+ "properties": {}
428
+ }
429
+ }
430
+ },
431
+ {
432
+ "type": "function",
433
+ "function": {
434
+ "name": "set_timezone",
435
+ "description": "Set the system timezone",
436
+ "parameters": {
437
+ "type": "object",
438
+ "properties": {}
439
+ }
440
+ }
441
+ },
442
+ {
443
+ "type": "function",
444
+ "function": {
445
+ "name": "reboot_system",
446
+ "description": "Reboot the NAS (requires confirmation)",
447
+ "parameters": {
448
+ "type": "object",
449
+ "properties": {}
450
+ }
451
+ }
452
+ }
453
+ ]