-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.yaml
More file actions
58 lines (58 loc) · 1.75 KB
/
tools.yaml
File metadata and controls
58 lines (58 loc) · 1.75 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
- type: function
function:
name: get_page_contents
description: Returns the text content of a web page given the url.
parameters:
properties:
url:
description: URL of website to read
type: string
required:
- url
type: object
- type: function
function:
name: search_history
description: Returns the most relevant history items related to search term with
each containing url, title, visited time and a description of the page if available.
parameters:
properties:
search_term:
description: The term to use to search for relevant history.
type: string
required:
- search_term
type: object
- type: function
function:
name: get_preferences
description: Retrieve the user's saved preferences (location, dietary, hobbies,
interests, etc.) which could help in personalizing the response. If a query
is provided, it will be used to filter for relevant preferences.
parameters:
properties:
query:
description: The user query to filter for relevant preferences if provided.
type: string
type: object
- type: function
function:
name: get_tabs
description: Returns a list of opened tabs with each including url, title and
a flag indicating if the tab is currently active to the user.
parameters:
properties: {}
type: object
- type: function
function:
name: search_engine
description: Opens a new browser tab and initiates an internet search (no results
are returned)
parameters:
properties:
query:
description: The query to search for on the web.
type: string
required:
- query
type: object