image_metadata
Extract metadata from images by providing a URL or file path, generating descriptive captions using vision models for analysis and organization.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| caption_override | No | ||
| config_path | No | ||
| file_path | No | ||
| image_url | No | ||
| mode | No | double |
Input Schema (JSON Schema)
{
"properties": {
"caption_override": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Caption Override"
},
"config_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Config Path"
},
"file_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "File Path"
},
"image_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Image Url"
},
"mode": {
"default": "double",
"title": "Mode",
"type": "string"
}
},
"title": "image_metadataArguments",
"type": "object"
}