-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathschema.yaml
More file actions
32 lines (29 loc) · 838 Bytes
/
schema.yaml
File metadata and controls
32 lines (29 loc) · 838 Bytes
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
tools:
- name: search_web
description: "Search the internet for current information"
parameters:
query:
type: string
description: "The search query to execute"
max_results:
type: integer
default: 5
description: "Maximum number of results to return"
- name: read_file
description: "Read contents of a file from the filesystem"
parameters:
path:
type: string
description: "Path to the file to read"
- name: write_file
description: "Write content to a file"
parameters:
path:
type: string
description: "Path where to write the file"
content:
type: string
description: "Content to write to the file"
- name: get_current_time
description: "Get the current timestamp"
parameters: {}