image_placeholder
Generate placeholder images for testing or development by specifying width, height, and provider (placehold or lorem-picsum), ensuring accurate visual mockups.
Instructions
Generate a placeholder image based on a provider, width, and height.
Use this tool to generate a placeholder image for testing or development purposes.
Args:
provider: The provider to use for the image, must be either `placehold` or `lorem-picsum`.
width: The width of the image, must be a positive integer between 1 and 10000.
height: The height of the image, must be a positive integer between 1 and 10000.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | ||
provider | Yes | ||
width | Yes |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"title": "Height",
"type": "integer"
},
"provider": {
"enum": [
"placehold",
"lorem-picsum"
],
"title": "Provider",
"type": "string"
},
"width": {
"title": "Width",
"type": "integer"
}
},
"required": [
"provider",
"width",
"height"
],
"title": "image_placeholderArguments",
"type": "object"
}