Skip to content

Module nonebot_plugin_marshoai.hunyuan


@genimage_cmd.handle()

async func genimage(event: Event, prompt = None)

Source code or View on GitHub
python
@genimage_cmd.handle()
async def genimage(event: Event, prompt=None):
    if not prompt:
        await genimage_cmd.finish('无提示词')
    try:
        result = generate_image(prompt)
        url = json.loads(result)['ResultImage']
        await UniMessage.image(url=url).send()
    except Exception as e:
        traceback.print_exc()

The document is being improved. Suggestions are welcome.