Models / Lykon
Image

Dreamshaper

Community-favorite artistic image generation

About model

Dreamshaper offers versatile artistic image generation with a strong community following and excellent value.

Quickstart guides
  • API usage

    • cURL
    • Python
    • Typescript

    Endpoint:

    Lykon/DreamShaper

    curl -X POST "https://api.together.xyz/v1/images/generations" \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "Lykon/DreamShaper",
        "prompt": "Draw an anime style version of this image.",
        "width": 1024,
        "height": 768,
        "steps": 28,
        "n": 1,
        "response_format": "url",
        "image_url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"
      }'
    
    from together import Together
    
    client = Together()
    
    imageCompletion = client.images.generate(
        model="Lykon/DreamShaper",
        width=1024,
        height=768,
        steps=28,
        prompt="Draw an anime style version of this image.",
        image_url="https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png",
    )
    
    print(imageCompletion.data[0].url)
    
    
    
    import Together from "together-ai";
    
    const together = new Together();
    
    async function main() {
      const response = await together.images.create({
        model: "Lykon/DreamShaper",
        width: 1024,
        height: 1024,
        steps: 28,
        prompt: "Draw an anime style version of this image.",
        image_url: "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png",
      });
    
      console.log(response.data[0].url);
    }
    
    main();
    
    
  • Model card

    Architecture:
    • Community-developed model
    • Artistic optimization
    • Versatile generation

  • Applications & use cases

    Use Cases:
    • Artistic creation
    • Character design
    • Fantasy artwork

Related models
  • Model provider
    Lykon
  • Type
    Image
  • Main use cases
    Image Generation
  • Deployment
    Serverless
  • Input price

    $0.0006 / MP

  • Input modalities
    Text
  • Output modalities
    Image