addedInput schema / properties / images
Added value: +{
+ "description": "Optional images to include with the prompt (for vision-capable models)",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "description": "Base64-encoded image data",
+ "type": "string"
+ },
+ "mimeType": {
+ "description": "MIME type (e.g., \"image/png\") — required for base64 data, optional for URLs",
+ "type": "string"
+ },
+ "url": {
+ "description": "Image URL — passed directly to the LLM provider",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "responses": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "type": "string"
+ },
+ "error": {
+ "type": "string"
+ },
+ "latency": {
+ "type": "number"
+ },
+ "model": {
+ "type": "string"
+ },
+ "nickname": {
+ "type": "string"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "tokens": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "completion": {
+ "type": "number"
+ },
+ "prompt": {
+ "type": "number"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "prompt",
+ "completion",
+ "total"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "provider",
+ "nickname",
+ "model",
+ "content",
+ "latency",
+ "tokens"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "responses"
+ ],
+ "type": "object"
+}