{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "necessary-block/ai-block",
  "version": "1.1.1",
  "title": "AI Block",
  "category": "necessary-blocks",
  "icon": "lightbulb",
  "description": "Artificial intelligence block - Content create from openai by api gpt-3.5-turbo model",
  "example": {},
  "keywords": [
    "ai",
    "artificial intelligence",
    "chat"
  ],
  "supports": {
    "html": false,
    "shadow": true,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    },
    "typography": {
      "fontSize": true,
      "textAlign": true,
      "lineHeight": true,
      "__experimentalFontFamily": true,
      "__experimentalFontWeight": true,
      "__experimentalFontStyle": true,
      "__experimentalTextTransform": true,
      "__experimentalTextDecoration": true,
      "__experimentalLetterSpacing": true,
      "__experimentalDefaultControls": {
        "fontSize": true,
        "lineHeight": true
      }
    },
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true,
      "__experimentalDefaultControls": {
        "color": true,
        "radius": true,
        "style": true,
        "width": true,
        "shadow": true
      }
    },
    "className": true,
    "customClassName": true
  },
  "attributes": {
    "show": {
      "type": "boolean",
      "default": false
    },
    "currentapi": {
      "type": "string",
      "default": "openai"
    },
    "api_keys": {
      "type": "object",
      "default": {}
    },
    "content": {
      "type": "string"
    },
    "input": {
      "type": "string",
      "default": ""
    },
    "output": {
      "type": "string",
      "default": ""
    },
    "temp": {
      "type": "boolean",
      "default": true
    }
  },
  "textdomain": "ai-block",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}