removedInput schema / additionalProperties
Removed value: -false
removedInput schema / description
Removed value: -"Input for running a one-time research task.\n\nThe Research API executes deep web research on any topic.\nAn AI agent searches, reads, and synthesizes information from across the web.\nExamples:\n- Research competitive landscape for a product\n- Summarize recent news about a company\n- Find technical documentation or specifications"
addedInput schema / properties / output_fields / anyOf
Added value: +[
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / output_fields / description
Removed value: -"Optional: Extract structured data as an array of objects with these field names. Example: ['title', 'summary', 'source_url']. If omitted, returns human-readable text. For complex schemas, call the Yutori REST API directly (see example at: https://docs.yutori.com/reference/research-create#using-webhooks-and-a-structured-output-schema)."
removedInput schema / properties / output_fields / items
Removed value: -{
- "type": "string"
-}
removedInput schema / properties / output_fields / minItems
Removed value: -1
removedInput schema / properties / output_fields / type
Removed value: -"array"
removedInput schema / properties / query / description
Removed value: -"Natural language description of what to research. Examples: 'What are the latest developments in quantum computing from the past week?', 'Research the competitive landscape for AI code assistants', 'Find pricing information for cloud GPU providers'"
addedInput schema / properties / user_location / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / user_location / description
Removed value: -"Location for contextual awareness. Format: 'city, region, country'. Default: 'San Francisco, CA, US'"
removedInput schema / properties / user_location / type
Removed value: -"string"
addedInput schema / properties / user_timezone / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / user_timezone / description
Removed value: -"Timezone for contextual awareness. Example: 'America/New_York'. Default: 'America/Los_Angeles'"
removedInput schema / properties / user_timezone / type
Removed value: -"string"
addedInput schema / properties / webhook_format / anyOf
Added value: +[
+ {
+ "enum": [
+ "scout",
+ "slack",
+ "zapier"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / webhook_format / description
Removed value: -"Webhook payload format: 'scout' (default), 'slack', or 'zapier'"
removedInput schema / properties / webhook_format / enum
Removed value: -[
- "scout",
- "slack",
- "zapier"
-]
removedInput schema / properties / webhook_format / type
Removed value: -"string"
addedInput schema / properties / webhook_url / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / webhook_url / description
Removed value: -"HTTPS URL to receive webhook notification when research completes. Must use https://."
removedInput schema / properties / webhook_url / type
Removed value: -"string"
changedInput schema / title
Previous value: -"ResearchTaskInput"New value: +"run_research_taskArguments"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "title": "Result",
+ "type": "string"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "run_research_taskOutput",
+ "type": "object"
+}