kobold_interrogate
Generate descriptive captions for images by integrating image analysis with text generation capabilities through the Kobold MCP Server.
Instructions
Generate caption for image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiUrl | No | http://localhost:5001 | |
image | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiUrl": {
"default": "http://localhost:5001",
"type": "string"
},
"image": {
"type": "string"
}
},
"required": [
"image"
],
"type": "object"
}