search-web
Access real-time, trusted web content with a natural language search query. Choose search depth for direct answers or in-depth analysis, supporting facts, news, and source-backed information retrieval.
Instructions
Search the web in real time using Linkup. Use this tool whenever the user needs trusted facts, news, or source-backed information. Returns comprehensive content from the most relevant sources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | Yes | The search depth to perform. Use 'standard' for queries with likely direct answers. Use 'deep' for complex queries requiring comprehensive analysis or multi-hop questions | |
query | Yes | Natural language search query. Full questions work best, e.g., 'How does the new EU AI Act affect startups?' |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "The search depth to perform. Use 'standard' for queries with likely direct answers. Use 'deep' for complex queries requiring comprehensive analysis or multi-hop questions",
"enum": [
"standard",
"deep"
],
"type": "string"
},
"query": {
"description": "Natural language search query. Full questions work best, e.g., 'How does the new EU AI Act affect startups?'",
"type": "string"
}
},
"required": [
"query",
"depth"
],
"type": "object"
}