changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "creditsUsed": {
+ "type": "integer"
+ },
+ "error": {
+ "type": "string"
+ },
+ "expiresAt": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "results": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "basis": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "basisWarnings": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "data": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "error": {
+ "type": "string"
+ },
+ "llmInputHash": {
+ "type": "string"
+ },
+ "llmUsage": {
+ "type": "object"
+ },
+ "status": {
+ "enum": [
+ "processing",
+ "completed",
+ "failed",
+ "cancelled"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "enum": [
+ "processing",
+ "cancelling",
+ "completed",
+ "failed",
+ "cancelled"
+ ],
+ "type": "string"
+ },
+ "success": {
+ "type": "boolean"
+ },
+ "tokensUsed": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "success",
+ "id",
+ "status",
+ "results",
+ "expiresAt",
+ "tokensUsed"
+ ],
+ "type": "object"
+}