imageSearchText
Retrieve images matching input text from a dataset stored on Tencent Cloud COS MCP Server, enabling efficient visual content search and retrieval.
Instructions
根据输入的文本内容,从数据集中检索出与输入的文本内容相符的图片
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | 检索的文本 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "检索的文本",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}