Spaces:
Runtime error
Runtime error
File size: 1,181 Bytes
9f9394b | 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 | #
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
TOOLS = [
{
"type": "function",
"function": {
"name": "web_search",
"description": "Search the web using SearXNG and return results",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query"
}
},
"required": ["query"]
}
}
},
{
"type": "function",
"function": {
"name": "open_link",
"description": "Open a web page using a URL, link, or hyperlink and extract its main content",
"parameters": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL, link, or hyperlink of the web page to open and read"
}
},
"required": ["url"]
}
}
}
] |