changedInput schema / properties / execution / anyOf
Previous value: -[
- {
- "properties": {
- "model": {
- "anyOf": [
- {
- "minLength": 1,
- "pattern": "\\S",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "profile": {
- "default": "balanced",
- "enum": [
- "quick",
- "balanced",
- "deep"
- ],
- "type": "string"
- },
- "thinking": {
- "anyOf": [
- {
- "enum": [
- "off",
- "minimal",
- "low",
- "medium",
- "high",
- "xhigh",
- "max"
- ],
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "timeout_seconds": {
- "anyOf": [
- {
- "maximum": 7200,
- "minimum": 1,
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- }
- },
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "properties": {
+ "model": {
+ "anyOf": [
+ {
+ "minLength": 1,
+ "pattern": "\\S",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "profile": {
+ "default": "balanced",
+ "description": "Profile defaults: quick: Defaults to low thinking with a 600-second deadline. balanced: Defaults to high thinking with a 1800-second deadline. deep: Defaults to high thinking with a 3600-second deadline. Uses the same thinking level as balanced with a longer deadline, not higher reasoning. These are default choices; overrides, effective settings, and actual settings are reported separately.",
+ "enum": [
+ "quick",
+ "balanced",
+ "deep"
+ ],
+ "type": "string"
+ },
+ "thinking": {
+ "anyOf": [
+ {
+ "enum": [
+ "off",
+ "minimal",
+ "low",
+ "medium",
+ "high",
+ "xhigh",
+ "max"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "timeout_seconds": {
+ "anyOf": [
+ {
+ "maximum": 7200,
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]