an icon of trpfrog to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained(
5 'Prgckwb/trpfrog-sdxl',
6 torch_dtype=torch.float16
7).to('cuda')
8
9image = pipeline('an icon of trpfrog').images[0]
10image.save('trpfrog.png')