wanx-t2i-image-generation
Generate detailed images from text prompts using Alibaba Cloud's Tongyi Wanxiang API. Input prompts and negative prompts to create custom visuals, with results retrieved via a separate tool.
Instructions
使用阿里云万相文生图大模型的文生图能力,由于图片生成耗时比较久,需要调用 wanx-t2i-image-generation-result 工具获取结果
Input Schema
Name | Required | Description | Default |
---|---|---|---|
negative_prompt | Yes | ||
prompt | Yes | ||
seed | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"negative_prompt": {
"type": "string"
},
"prompt": {
"type": "string"
},
"seed": {
"type": "number"
}
},
"required": [
"prompt",
"negative_prompt"
],
"type": "object"
}