Skip to content

Instantly share code, notes, and snippets.

@lorenzojkrl
Created November 6, 2022 10:33
Show Gist options
  • Save lorenzojkrl/2208f7394e0108490e91e131e64313d0 to your computer and use it in GitHub Desktop.
Save lorenzojkrl/2208f7394e0108490e91e131e64313d0 to your computer and use it in GitHub Desktop.
DALLE - Function for image generation app using openai API
const generateImage = async () => {
const imageParameters = {
prompt: userPrompt,
n: 1,
size: "256x256",
}
const response = await openai.createImage(imageParameters);
const urlData = response.data.data[0].url
console.log(urlData);
setImageUrl(urlData);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment