process_image_to_code
Convert images into code snippets by analyzing visual content and generating code in specified programming languages, streamlining development workflows.
Instructions
处理图像并生成代码
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_url | Yes | 图像URL | |
instructions | No | 额外的指令或要求 | |
language | No | 目标编程语言,例如:python, javascript, html, css等 | python |
Input Schema (JSON Schema)
{
"properties": {
"image_url": {
"description": "图像URL",
"type": "string"
},
"instructions": {
"default": "",
"description": "额外的指令或要求",
"type": "string"
},
"language": {
"default": "python",
"description": "目标编程语言,例如:python, javascript, html, css等",
"type": "string"
}
},
"required": [
"image_url"
],
"type": "object"
}