removedInput schema / additionalProperties
Removed value: -false
removedInput schema / description
Removed value: -"Input for running a one-time browsing task.\n\nThe Browsing API enables automation of browser-based workflows.\nAn AI agent runs its own cloud browser and operates it like a person -\nclicking, typing, scrolling, and navigating for you. Examples:\n- Fill forms on websites\n- Extract structured data from complex web pages\n- Automate multi-step workflows that require authentication"
addedInput schema / properties / browser / anyOf
Added value: +[
+ {
+ "enum": [
+ "cloud",
+ "local"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / browser / description
Removed value: -"Where to run the browser. 'cloud' (default) uses Yutori's cloud browser. 'local' uses Yutori Local with the user's logged-in sessions on the desktop. Requires the desktop app to be running."
removedInput schema / properties / browser / enum
Removed value: -[
- "cloud",
- "local"
-]
removedInput schema / properties / browser / type
Removed value: -"string"
addedInput schema / properties / max_steps / anyOf
Added value: +[
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / max_steps / description
Removed value: -"Maximum number of browser actions (1-100). Default: 25"
removedInput schema / properties / max_steps / maximum
Removed value: -100
removedInput schema / properties / max_steps / minimum
Removed value: -1
removedInput schema / properties / max_steps / type
Removed value: -"integer"
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: ['name', 'title', 'email']. If omitted, returns human-readable text. For complex schemas, call the Yutori REST API directly (see example at: https://docs.yutori.com/reference/browsing-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"
addedInput schema / properties / require_auth / anyOf
Added value: +[
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+]
removedInput schema / properties / require_auth / description
Removed value: -"If true, use an auth-optimized cloud browser provider for login flows. Only applies when browser is 'cloud' (default)."
removedInput schema / properties / require_auth / type
Removed value: -"boolean"
removedInput schema / properties / start_url / description
Removed value: -"The URL where the navigator should begin. Example: 'https://yutori.com'"
removedInput schema / properties / task / description
Removed value: -"Natural language instruction for the navigator agent. Examples: 'Give me a list of all employees (names and titles) of Yutori', 'Fill out the contact form with my information', 'Extract product prices from this page'"
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 task completes. Must use https://."
removedInput schema / properties / webhook_url / type
Removed value: -"string"
changedInput schema / title
Previous value: -"BrowsingTaskInput"New value: +"run_browsing_taskArguments"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "title": "Result",
+ "type": "string"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "run_browsing_taskOutput",
+ "type": "object"
+}