If You Like ChatGPT, You’ll Love This!

Manpreet Singh
2 min readMar 13, 2023

Welcome back! ChatGPT is an awesome AI tool that tons of people have been using! So, lets take a look at the next big update with ChatGPT, this is the visual component behind ChatGPT, almost like a Dall-E alternative! Here is a link to their GitHub page below:

Here is an example of how this project is broken down:

Essentially, you will type in an image you want to see, and ChatGPT will give you a unique generated image! If you want to start using this project, you can clone this project by using the following commands:

# create a new environment
conda create -n visgpt python=3.8

# activate the new environment
conda activate visgpt

# prepare the basic environments
pip install -r requirement.txt

# download the visual foundation models
bash download.sh

# prepare your private openAI private key
export OPENAI_API_KEY={Your_Private_Openai_Key}

# create a folder to save images
mkdir ./image

# Start…

--

--