Skip to content

JesseKartabani/ai-image-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Image Generator

Utilizes the OpenAI API and the DALL-E model to generate original images based on user-provided text descriptions. The model is trained on the CIFAR-10 dataset and is able to generate a wide range of images, from photorealistic to highly stylized. The project also has a front-end interface built using React, allowing users to easily generate their own images.

Capture

API

OpenAI

Building

In order to build this you must have git installed. Paste the following command in a directory of your choice. Alternatively you can download the code as a .zip file and extract it.

git clone https://github.com/JesseKartabani/ai-image-gen.git
cd ai-image-gen
npm install

To start a development enviroment use the following command.

npm start

If you want to add your own OpenAI API key do so by creating a .env file inside the root of the project.

// Inside .env file
REACT_APP_API_KEY= = "yourKeyGoesHere";