changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "error": {
+ "type": "string"
+ },
+ "response": {
+ "additionalProperties": false,
+ "properties": {
+ "answer": {
+ "type": "string"
+ },
+ "authMode": {
+ "type": "string"
+ },
+ "citations": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "citedText": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "model": {
+ "type": "string"
+ },
+ "provider": {
+ "enum": [
+ "brave",
+ "duckduckgo",
+ "exa",
+ "firecrawl",
+ "none",
+ "searxng"
+ ],
+ "type": "string"
+ },
+ "relatedQuestions": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "requestId": {
+ "type": "string"
+ },
+ "searchQueries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "sources": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "ageSeconds": {
+ "type": "number"
+ },
+ "author": {
+ "type": "string"
+ },
+ "publishedDate": {
+ "type": "string"
+ },
+ "snippet": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "usage": {
+ "additionalProperties": false,
+ "properties": {
+ "inputTokens": {
+ "type": "number"
+ },
+ "outputTokens": {
+ "type": "number"
+ },
+ "searchRequests": {
+ "type": "number"
+ },
+ "totalTokens": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "provider",
+ "sources"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "response"
+ ],
+ "type": "object"
+}