brave_image_search
Search the web for images using the Brave Search API by entering a search term and specifying the number of results, up to three at a time.
Instructions
A tool for searching the web for images using the Brave Search API.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| count | No | The number of images to search for, minimum 1, maximum 3 | |
| searchTerm | Yes | The term to search the internet for images of | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "count": {
      "default": 1,
      "description": "The number of images to search for, minimum 1, maximum 3",
      "maximum": 3,
      "minimum": 1,
      "type": "number"
    },
    "searchTerm": {
      "description": "The term to search the internet for images of",
      "type": "string"
    }
  },
  "required": [
    "searchTerm"
  ],
  "type": "object"
}