
1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("abarget/sd-waterbottle-model", torch_dtype=torch.float16)
5prompt = "a teal colored water bottle A stainless steel water bottle a water bottle with a flip-up spout"
6image = pipeline(prompt).images[0]
7image.save("my_image.png")# TODO: add an example code snippet for running this diffusion pipeline