You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A tool that fetches content from a URL and converts it to markdown for easy reading with Ref. \n\nThis is powerful when used in conjunction with the ref_search_documentation or ref_search_web tool that return urls of relevant content.",
5
+
"arguments": [
6
+
{
7
+
"name": "url",
8
+
"type": "string",
9
+
"desc": "The URL of the webpage to read."
10
+
}
11
+
]
12
+
},
13
+
{
14
+
"name": "ref_search_documentation",
15
+
"description": "A powerful search tool to check technical documentation. Great for finding facts or code snippets. Can be used to search for public documentation on the web or github as well from private resources like repos and pdfs.",
16
+
"arguments": [
17
+
{
18
+
"name": "query",
19
+
"type": "string",
20
+
"desc": "Query to search for relevant documentation. This should be a full sentence or question."
21
+
},
22
+
{
23
+
"name": "keyWords",
24
+
"type": "array",
25
+
"items": {
26
+
"type": "string"
27
+
},
28
+
"desc": "A list of keywords to use for the search like you would use for grep",
29
+
"optional": true
30
+
},
31
+
{
32
+
"name": "source",
33
+
"type": "string",
34
+
"desc": "Defaults to 'all'. 'public' is used when the user is asking about a public API or library. 'private' is used when the user is asking about their own private repo or pdfs. 'web' is use only as a fallback when 'public' has failed.",
0 commit comments