Skip to content

v0.7.0-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@droplet-bot droplet-bot released this 28 Feb 14:28
be1ec2e

🎉 Highlight - VDP supports Text to Image AI task now

image

🤖 What is Text to Image?

Text to Image is a Generative AI task to generate images from text inputs. Generally, the task takes descriptive text prompts as the input, and outputs generated images in Base64 format based on the text prompts.

📘 Check out the AI task documentation.

image

🚀 Try out the Text to Image pipeline on our demo website

We have set up a SYNC Text to Image pipeline stable-diffusion on our demo website.

Send a request and decode the generated Base64 image

curl -X POST https://demo.instill.tech/v1alpha/pipelines/stable-diffusion/trigger -d '{
  "task_inputs": [
    {
      "text_to_image":{
        "prompt": "a monkey drinking alone in a bar by Edward Hopper",
        "steps": 40,
        "cfg_scale": 10.5,
        "seed": 32554,
        "samples": 1
      }
    }
  ]
}'  | jq -r '.model_instance_outputs[0].task_outputs[0].text_to_image.images[0]' | base64 -d > vdp-stable-diffusion.jpg

Product Updates

Features ✨

  • Support Text Generation AI task

VDP (0.7.0-alpha)

Miscellaneous Chores

Console (v0.18.0-alpha)

Features

Bug Fixes

Model-backend (v0.13.1-alpha)

Bug Fixes