addedInput schema / properties / budget
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "max_attempts": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "max_concurrency": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "max_escalations": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "max_retries": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}
addedInput schema / properties / context_pack
Added value: +{
+ "oneOf": [
+ {
+ "maxLength": 32768,
+ "type": "string"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "maxLength": 32768,
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "version",
+ "content"
+ ],
+ "type": "object"
+ }
+ ]
+}
addedInput schema / properties / gateway
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / profile
Added value: +{
+ "type": "string"
+}
changedInput schema / properties / reasoning_effort / enum
Previous value: -[
- "low",
- "medium",
- "high",
- "xhigh"
-]New value: +[
+ "low",
+ "medium",
+ "high",
+ "xhigh",
+ "max"
+]