{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--WebSearch.json",
  "title": "WebSearch",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/LogicUnit/WebSearch.json",
    "sourceSha256": "7ca0cf439c4f3d08abffb0a945d1285156eb6a921936fb39a7ae9cab40edff1a"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "WebSearch",
      "title": "Implementation"
    },
    "summarizer": {
      "default": "BeautifulSoup",
      "enum": [
        "BeautifulSoup",
        "noop"
      ],
      "title": "Summarizer",
      "type": "string"
    },
    "cse_id": {
      "description": "Google Custom Search Engine Id.",
      "title": "Cse Id",
      "type": "string"
    },
    "cse_token": {
      "description": "Google Project dev token, must have search permissions.",
      "title": "Cse Token",
      "type": "string"
    },
    "name": {
      "default": "search",
      "title": "Name",
      "type": "string"
    },
    "description": {
      "default": null,
      "title": "Description",
      "type": "string"
    },
    "defaultDateRestrict": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Defaultdaterestrict"
    },
    "params": {
      "anyOf": [
        {
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": {},
      "title": "Params"
    }
  },
  "additionalProperties": false,
  "required": [
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.builtins.logic_units.web_search.WebSearch",
    "groups": [
      "LogicUnit"
    ],
    "name": "WebSearch",
    "overrides": {}
  }
}
