Tool Call Types
1. Web Search (web_search)
When user queries require searching network information, the system will automatically call the web search tool.
Search Result Format:
json
{
"type": "search",
"query": "search keywords",
"results": [
{
"title": "Search result title",
"link": "https://example.com",
"snippet": "Search result summary",
"position": 1
}
]
}2. Web Crawling (web_crawl)
When detailed content from specific web pages is needed, the system will call the web crawling tool.
Crawling Result Format:
json
{
"type": "open_page",
"url": "https://example.com/page",
"content": "Web page content text"
}