Image Gen
Now, let’s make some “art”.
Warning
Make sure you understand how to create a bot from Hello World tutorial
main.py
from ugly_bot import *
@export("message_direct")
def image_gen_example(message):
image = image_gen(
model=ImageGenModel.FAL_FLUX_DEV,
prompt=message.text
)
message_send(image=image)
start()
Glossary