changedInput schema / properties / task / description
Previous value: -"What you want to do, e.g. \"generate a photorealistic portrait\", \"upscale an image to 4K\", \"transcribe audio to text\""New value: +"What you want to do, e.g. \"generate a photorealistic portrait\", \"upscale an image to 4K\", \"transcribe audio to text\"."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "limit": {
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "models": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "description": {
+ "type": "string"
+ },
+ "estimatedCostUsd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pricing": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "categories"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "nextAction": {
+ "additionalProperties": false,
+ "properties": {
+ "arguments": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "tool": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool",
+ "arguments",
+ "reason"
+ ],
+ "type": "object"
+ },
+ "nextStart": {
+ "anyOf": [
+ {
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "start": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "models",
+ "total",
+ "start",
+ "limit",
+ "nextStart"
+ ],
+ "type": "object"
+}