mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
737 B
Executable File
737 B
Executable File
title |
---|
hunyuan |
模块 nonebot_plugin_marshoai.hunyuan
@genimage_cmd.handle()
async func genimage(event: Event, prompt = None)
源代码 或 在GitHub上查看
@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()