changedInput schema / properties / crawl_results / description
Previous value: -"Number of top results to crawl for full webpage content. Each successfully crawled page adds 1 credit to the base 1-credit search request"New value: +"Number of top results to retrieve as full pages. Each successful page retrieval adds 1 credit to the base 1-credit search request"
addedInput schema / properties / crawl_results / minimum
Added value: +0
changedInput schema / properties / exclude_sites / description
Previous value: -"List of sites to exclude from search. Only use when you need to explicitly filter out specific domains from results"New value: +"Domains to exclude from the search"
changedInput schema / properties / include_sites / description
Previous value: -"List of sites to include in search. Only use when you need special results from sites not available in search_service"New value: +"Domains to include when the user explicitly scopes the search"
addedInput schema / properties / max_results / maximum
Added value: +50
addedInput schema / properties / max_results / minimum
Added value: +1
changedInput schema / properties / query / description
Previous value: -"Search query, be simple and concise"New value: +"Short, focused search query"
changedInput schema / properties / search_service / description
Previous value: -"Specify the search engine to use. Choose based on your specific needs"New value: +"Search engine to use; choose one only when it matches the user's source intent"
changedInput schema / properties / time_range / description
Previous value: -"Time range for search results, only use when specific time constraints are required"New value: +"Optional recency window for time-sensitive searches"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Stable identifier for this result; for web results this is the canonical URL",
+ "type": "string"
+ },
+ "metadata": {
+ "additionalProperties": true,
+ "description": "Additional source metadata",
+ "type": "object"
+ },
+ "text": {
+ "description": "Result snippet or extracted page text when available",
+ "type": "string"
+ },
+ "title": {
+ "description": "Human-readable result title",
+ "type": "string"
+ },
+ "url": {
+ "description": "Canonical URL that clients can cite and users can open",
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results"
+ ],
+ "type": "object"
+}