dense_caption
Generate detailed captions for images from URLs or local files to describe visual content using computer vision models.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | No | ||
| image_url | 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"
}
},
"title": "dense_captionArguments",
"type": "object"
}