alt_text
Generate descriptive alt text for images from URLs or local files to improve accessibility and SEO using computer vision models.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | No | ||
| image_url | No | ||
| max_words | No |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Path"
},
"image_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Image Url"
},
"max_words": {
"default": 20,
"title": "Max Words",
"type": "integer"
}
},
"title": "alt_textArguments",
"type": "object"
}