web_search
Search the web for a query, optionally target a specific platform, and receive structured JSON results containing titles, URLs, and summaries.
Instructions
Performs a third-party web search based on the given query and returns the results as a JSON string.
The query should be a clear, self-contained natural-language search query.
When helpful, include constraints such as topic, time range, language, or domain.
The platform should be the platforms which you should focus on searching, such as "Twitter", "GitHub", "Reddit", etc.
The min_results and max_results should be the minimum and maximum number of results to return.
Returns
A JSON-encoded string representing a list of search results. Each result includes at least:
url: the link to the resulttitle: a short titlesummary: a brief description or snippet of the page content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query keyword | |
| platform | No | Specify search platform | |
| max_results | No | Maximum number of results | |
| min_results | No | Minimum number of results |