#community-help
1 messages Β· Page 16 of 1
hi, this place is dedicated specifically to Dalle2, see #ai-discussions , there's more chance that someone can help you out
Hi guys!
What's the next event if there is one?
Is there any news coming from dall-e for the next weeks/months?
Probably Christmas
You'll have to wait and see! π
We don't know what OpenAI is up to as a company here, so we don't know if/when features will be added or what those features will be. In regards to Dallify, I don't think it will be released as a Discord bot that you can add to your own servers because it's not a product by OAI. Rather, Dallify was built by volunteers. Will it be available on this server again? I do not know the answer to that question
Thanks!
I can't seem to get the editor to work. First time using it and I used '?' and that doesnt bring up commands nor do any of the commands work to move or scale an image. Let me know if anyone knows what im doing wrong
are you referring to the editor on the labs website?
yup yup!
I uploaded an image and just try to combining two images and it doesnt do anything and my 2 uploaded images just stack over each other
I assume your trying to outpaint then. There are outpainting guides in #πβresources
I havnt even tried outputing just trying to make image haha I can move or do anything with it. Just overlaps and then nothing.
when uploading images, you should be able to drag the image over before clicking the checkmark β which locks it in place π€
Does anyone know if Dall'e can be used to generate correct logos without text?
I can't do that even haha maybe cause its beta? My friend cant do it either
I would be surprised if DE2 could accurately recreate logos out of nothing
are you on mobile or desktop? If you're on desktop, what browser are you using?
Thank you, I will try
google chrome
I'm trying it on Chrome on desktop right now, and I'm not having issues. This tells me that the website is working correctly
I was thinking of this prompt : "a simple logo for a lighting company representing a hanging lamp" can someone improve it ?
this is a question for #ββprompt-help . Also, that channel is for refining prompts, not making new ones π
What is curated art?
#hall-of-fame is a channel of images that have received at least 10 β on the server
Does this discord ever host art competitions?
we haven't hosted one yet, but we may in the future
That would be very cool
Are the website devs available for suggestions here?
I recommend dropping suggestions in #placeholder-channel
Thankyou!
I was wondering on how Photopea did their implementation of Dall-E. You can render images in 1024x1024, and you don't need an openai account to use it, but I thought you could only access Dall-E through the official openai website.
Businesses are getting access to the API. Each business can choose how to implement it in their own unique way. This means, an OAI isn't necessarily required for their customers as the customers are utilizing the company's access to the API
Ohh gotcha, thanks.
Where do I find the frame extending tool?
Ty
hi there! If we create a digital piece of art qwwith Dalle2, are we able to mention in has been done with Dalle2? we may promote the exhibition mentioning thae art has been done with Dalle2
or we should say "done with an AI"?
hi! unless you remove watermark, it is there and anyone can see it's made via dalle2, you can mention of course, it's totally up to you
Hii. i want to ask something. How can i remove my history? or will it be automatically removed after several days?
Simply click the Clear button. :)
well. it only clears recent tab. not the history.
Oh! You mean your entire History?
As far as I know that's not possible 
yeah. I see. Thank you!
Sure thing! :)
When does a celebrity become a historical figure (and is okay to use)? I've used Albert Einstein several times without complaints. Would, say, David Bowie be okay? Malcolm X?
it's going to be a mural, so a lot of inpainting is involved, hence watermark will not be very visible
GM, serendipitous timing with this update: "Weβve simplified our Terms of Use, and you now have full ownership rights to the images you create with DALLΒ·E"
I was just wondering how to specify licenses when DALL-E components are included in a larger work
does anyone know what specific CC license DALL-E works might fall under given that new update (ie. pretty much anything we want to choose, from all rights reserved to CC0), or does it depend on the rest of the final product?
does this change in rights of the image generations mean the consumer now fully owns the image generation, or that the consumer also owns the image generation, and openai also owns it?
answer wont affect my practice/behavior, mainly just a logistics question
im new to this kind of thing, do i just put the prompt script into python?
Is the python package supposed to be updated? Do I have to manually post the url
it should be fine, regarding the further info please check this from the sharing & publication policy https://openai.com/api/policies/sharing-publication/
I just tried the API, looks like it has a separated pricing on the usage?
am I not able to use the credits I have on the API?
do you know what program i use for the API?
i tried python but for some reason it didn't do anything
you probabily have the same issue
Billing hard limit has been reached
looks like the API uses you money on the openai account, shared with the othe rmodels such as text
and it does not use your credits from the DALLE website
I get an error when I try to run the API
TypeError: openai.createImage is not a function
you have to set up the authorization before
const { Configuration, OpenAIApi } = require("openai");
const configuration = new Configuration({
apiKey: your apikey here,
});
const openai = new OpenAIApi(configuration);
I tried it but I still get the same Error. The only thing that is different from your code is the top line I got: import { Configuration, OpenAIApi } from "openai";
An API for accessing new AI models developed by OpenAI
im using TS too
i madding credits to my account to test it
Ill get back here when I make it work =P
ok
something is wrong on the billing setitngs lol
I've gotBilling hard limit has been reached
the usage is at 0.05, I've set it to 5.00
nvm, now it works
Β―_(γ)_/Β―
so i just use
python 3.11 for this
or something im guessing
curl https://api.openai.com/v1/images/generations -H 'Content-Type: application/json' -H 'Authorization: Bearer $xx-XXXXXXXXXXXXXXXXXX' -d '{
"prompt": "a white siamese cat",
"n": 1,
"size": "1024x1024"
}'
dunno why but its giving me an error :/
"error": {
"code": "invalid_api_key",
"message": "Incorrect API key provided: $**-***********************************************. You can find your API key at https://beta.openai.com.",
"param": null,
"type": "invalid_request_error"
}
}
ok, I think I found the problem
a small slip on the documentation =P
let me jsut check and I'll tell you
yep, that is the problem
ok.. so... at least on the Node lib..
the response has a data object, which contains all the data of the response..
the response itself also contains a data entry, which has the rest of the data
so.. replace const image_url = response.data[0].url; with const image_url = response.data.data[0].url;
did you implement the bot on your own server?
yes
I have my bot already
just added another command
here is the code, for anyone interested
import { TextChannel, Message } from "discord.js";
import { Configuration, OpenAIApi } from "openai";
import config from "../config";
import fetch from 'node-fetch';
export async function run(client, message: Message) {
if (!config.dalle2.whitelist.includes(message.author.id)) {
return;
}
const textChannel = message.channel as TextChannel;
textChannel.sendTyping();
const inputStr = message.content.split(" ").slice(1).join(" ");
if (!inputStr) {
message.reply("Escreva mais alguma coisa...");
return;
}
const configuration = new Configuration({
apiKey: config.dalle2.apikey,
});
const openai = new OpenAIApi(configuration);
await message.react("π");
try {
const response = await openai.createImage({
prompt: inputStr,
n: 1,
size: "256x256",
});
// remove the reaction of the message and add a checkmark
await message.reactions.removeAll();
await message.react("β
");
const image_url = response.data.data[0].url;
// download the image to a buffer
const imageBuffers = [await fetch(image_url).then(res => res.buffer())];
// send the image as an attachment
await message.reply({
content: inputStr,
files: imageBuffers,
});
} catch (error) {
console.log(error);
}
}
anyway, it would be very nice if the devs could either fix the documentation to reflect the return of the lib, or the lib to reflect the example return
just to be clear, this is wrong:
it should be image_url = response.data.data[0].url;
sure, ask anything =)
oh damn thats cool
could i test it out myself?
to generate a sample
test what?
the discord bot
nah, sorry, private bot on private guild
i understand
but I can help you with code if you want
sorry for asking
ye sure
no problem at all
sorry for the ping @short salmon @split hazel @pine void
maybe we could have a coding channel, since we've got the API now
Stay tuned
π
nice
woo!
so i've never meddled with coding before. what's the difference between using an API and using the openai website?
I've got a question about the new ownership rights for images
Does this mean we can resell our images and extend those rights in various ways?
For example, before, you could monetize an image in various ways, but now with the new ownership rights, we should be able to do whatever we want with the images, such as making a stock-art pack of Dalle2 images to resell?
Literally dying trying to setup the API...
do my 5 credits a day i got for the october month disappear this month? (I still have many left)
They act as paid credits, so they will expire September 30th 2023
ah okay thank you!
2, there is no website for dalle1
Ah cool okay
Hello. I made an image but in the bottom right i see color squares
How do i remove that?
that's dalle2 watermark, you can remove it via inspect
or crop it
Inspect?
Where is the inspect button?
no, i mean inspect option on your browser, right click and then click on inspect, you will have source image without watermark there, or you can crop it
Oeh thanks alot
Hi all
Has anyone had any success creating first-person perspective photos?
It's not good π
how? I haven't been able to, no matter, what kind of phrasing I use
Idkπ
come on dude, give me an example of the words you used
meaning?
like this
you can see the prompt here under this photo, what prompt did you use and what did you find impossible? π
where can I see the prompt?
as the file name, but what prompt did you use?
"the world through the eyes of a cat", "first-person perspective of a cat", "how a cat sees the world", "the world from a cat's point of view" and many otheers
and simply got a photo of a cat's face etc
so your prompt subject is a cat or the world? because if it's the world doesn't matter whether it's cat or cow's perspective, it will still generate a general imagery of world and there's small chance that cat will be visually included in the image. but if you're focusing on cat, you will get images of cat how they look at or in their environment
so how would you phrase it?
also, another question if I may: is there a way to download all these photos at once?
once again depends what is your focus, if you want to show us a world and then let us know it is from cat's perspective, we have to see the cat, whether it's a reflection in the mirror, water or etc. if you do not wish to have cat in your image, then you can just simply generate anything that includes the world and pretend it's from cat's perspective
ah yeah I see what you mean
regarding prompt related questions better to use #ββprompt-help channel
You may want to read Prompt Tip 5, which explains why you need to get focus on a specific subject: https://discord.com/channels/974519864045756446/1021957512917954611
oh, ok, sorry about that.
thanks!
Is this the right place for questions about the software because I still have a few lol
Depends on the question. #ai-discussions gets more technical
just a question: is not bad make a ai generated image and then trace it to do a drawing?
That is a pretty common workflow for artists. How to credit the role of the AI in underpainting isn't really covered in the TOC, unfortunately. My personal opinion from an ethics point of view is that if the art was not solely created by the human artist, the artist has to disclose some collaboration with the AI. Composition ideas and concept art are a major use case for the AI in professional applications.
From the Content Policy:
const { Configuration, OpenAIApi } = require("openai");
const configuration = new Configuration({
apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);
module.exports =
{
name: "generate",
async execute(msg)
{
const promt = msg.content.split(" ").slice(1).join(" ")
const m = await msg.channel.send("Lade Bild..")
const completion = await openai.createImage({
model: "text-davinci-002",
n: 1,
prompt: promt,
size: "256x256",
temperature: 0.6
});
if (msg.channel.messages.cache.get(m.id)) m.edit(completion.data.data[0].url)
}
}
const completion = await openai.createImage({
^
TypeError: openai.createImage is not a function
any Idea how to fix that?
We've opened some new channels for the API #dev-chat #1037561751362863144 
Np
you need to add your APIKey
I did, I fixxed that already. the npm package was broken idk why
So I saw a video where a person generated new frames of an image using an AI and then someone said it was Dall E 2.
Is this true? And if so, how do I do this?
Dalle does not interpolate video
even if you somehow make it into an image sequence
there are AIs that do that tho
it was someone screen recording
hold on
I can get the video
never mind
forgot I can't send videos
How can I make an API request from a windows computer? The example request was for linux
#dev-chat is the place where you're most likely to get an answer π
Thank you
I saw on your blog that the API is available. When will I get the email?
DALLΒ·E API Now Available in Public Beta
Developers can now integrate DALLΒ·E directly into their apps and products through our API. More than 3 million people are already using DALLΒ·E to extend their creativity and speed up their workflows, generating over 4 million images a day. Developers can start building with this same technology in a matter of minutes.
you can use the API now. links to it in #announcements
And as well, I might need help with setting it up because I know nothing about code
I don't know how the API works exactly myself. The folks over in #dev-chat are the code magicians to ask π
Ok
I'd say just wait like 2-3 days and there will be an easy way to do it with less coding required :)
Hi. I just started using Dall-e 2 and I love itπ₯³ but I would like to remove the watermark/Singnature on the picture. How can I do do that?
You could use the magicalracer
inspect the webpage it contains the image without the watermark
depends on your web browser, usually you can do it by right clicking -> inspect
Thank you bothπ Can I still do this from cell phone?
i don't know if mobile chrome supports it, but definitely yes
inspect won't be available for mobile browse
How can i create images from text
https://labs.openai.com/ write your prompt and click on generate π
Can i do it in discord like midjourney ai
not at the moment no
@golden ruin why
Why?
to generate images you have to use either website or do it through api, this is how it is at the moment
Api means?
check #1037561751362863144
Can my OpenAI credits pay for my Dalle api credits? and where can I see clear pricing for the API? Thanks!
API credits & DALL-E credits are two different things. You cannot use your DALL-E credits when you use the API.
Pricing is here: https://openai.com/api/pricing/
Roger thanks major
Hello. I try to download my image on Dalle2 with the remove-watermark method, but it saves it as WEBP? How do I maintain the highest quality and remove watermark? Thank youuu
webp is high quality, just convert to PNG
how do I convert that? oh but its only 316 kb?
well, google for a program called file-converter
it adds a context menu entry on the files.. so you can just.. convert it
webp is just a better compression algorithm, this is as good quality as you can get from Dalle
Ah thanks!! got it. But 316kb is high quality ye? I expected more
cool!
got it im super happy
wanna see my first created dall-e? im so happy with it omg
lol
i will delete it now after u seen it
cool, but I don't think they will let you send it here, but send it on a Gallery channel xD
ye i will delete it after u seen it hahah
im crazy proud of it lmao
ai art is amazing
it is really good
Hello, how can I extend pictures on phone? I can't find that option.
now I just upload it on my instagram
Hello, how can I extend pictures on phone? I can't find that option, and it I try to do desktop mode I can't cause it's buggy, can someone help?
you can generate a link fro myour dalle gallery to have a nice link for it, which shows the prompt and credits you, it is a good way to share
i think the "app" doesn't have it, but you can open the site in desktop mode
ah cool! ye currently im using this but I have mainly used Nightcafe. I still need to start trying out MIdjourney. I struggle with choosing which one I need to do tho
I have tried but it doesn't work, it is buggy :/
yea, it wasn't really made for mobile
sorry, but i guess you'll need to get on a pc
sure
hey @ligui what do you think of midjourney and nightcafe etc then? why do you use this over that or do you use all of them
per the rules, Other AI generations where to be at #ai-discussions
they are cool tho, used a few of them, but so far dalle is the best IMO
okay cool
If someone not on this discord has used my dalle creation without permission and without crediting the dalle program, is there any recourse?
It was used commercially.
hi! how would you describe the strengths of dall-e? for example, it is very good at landscapes, graphics and abstract stuff but people and animals are still quite rudimentary
your work falls under rule #11 ! Please send a message to modmail about it π
We do not allow crawling, scraping, or otherwise externally posting of art or links posted in this Discord server without explicit consent from the original creator.
Hey all,
the DALL-E API returns "Billing hard limit has been reached" for all my requests. I didn't get a single picture so I didn't hit the limit.
Personally, I think it's difficult to give Dall-E 2 blanket statements like "it's good at x, but bad at y". Due to how new this technology is, it's hard to see how the model acts as a whole. I've gotten generations of great animals followed with ones of bad landscapes and vice-versa. Does it mean that the model is bad at something? I think it's due to the random nature of how the model creates images
you can check out the pricing for the API at https://openai.com/api/pricing/ (I assume you haven't spent any money yet)
Thanks. Didn't realize it costs money.
well, i do agree with you up to a point but i'm speaking generally. i'm planning on making a small project utilising dall-e (and finally the api :D) and i need some sort of consistency
By the way, when you use the API, does it take the credit from the account?
No, the API is priced differently. You can see the pricing I just posted in the link above
It can be very difficult to get DE2 to produce something very specific. If you have a general idea of what you want and accept the random nature of the gens you will tend to be more satisfied.
ok thank you
I need help! no matter what I do there is always motion blur
I have noticed a lot of AI image generators support the use as an image 'as inspiration' that can help guide the AI in the right direction. Do you think DALLE2 will ever support this? Wondering if there is some licensing reason why it can't or otherwise
If you're talking about making variations of an image, DE2 already supports that feature!
I'm not; it's similar though. Other platforms for example allow you make variations using an image as a template but with different prompts. As far as I'm aware DE2 only supports re-generating variations of the exact same image.
Unless this functionality exists and I'm just missing it, but it seems like DE2 does not allow you to modify the prompt for variations of an image
Okay, I understand now. Currently, DE2 doesn't allow you to add prompts when generating variations. We don't know if that feature will be added
E.g., I've seen this elsewhere but playground AI has this for stable diffusion. I think before they moved DE2 to an add-on this was also integrated with DE2 as well, but it's not via the official openai.com site
ok
hopefully it will one-day be supported then if that is the case π
Who all can currently use Dall E- the first one?
On this as well; is this true for uploads? Or only for generations already existing in your collection?
The invite you received from OpenAI is for DALLΒ·E 2. The first version of DALLΒ·E, version 1, was never released to the public.
Read more here: https://openai.com/dall-e-2/
@obtuse cairn
I believe that you can make variations for both
Hmm ok. I cannot seem to find this for uploads, only outpainting. but maybe it is in there somewhere. Cheers.
Who is using Dall e (first one)if the public uses Dalle 2?
It was only used by OpenAI themselves. As the embed says, it was never accessible to anyone outside the company
avoid saying what you don't want on the prompt, instead, try to say that you want everything in focus
I don't want that tho
I mean...I think ultimately the AI doesn't care what you want. It is trained and reacts to a particular set of language rules, so you have to work within that framework
I don't want everything in focus I mean
As this is with regards to prompt troubleshooting, you should continue to discuss this in the #ββprompt-help channel. I also recommend checking out #1021130377026351105 & #πβresources for photography related prompts.
Ok letβs say I want to sell a Dalle generated image in Shutterstock. The TOS say that I must say that it is created using AI. I understand that. When the watermark is removed should I state that it is generated using Dalle? I have read the tos but it seems unclear to me.
been searching thru messages of ppl also having the issue of createImage not being a function, so i tried using a fresh api key, then i also saw that u need to set the auth before the generation code, but i already do in my code. another thing i saw with a person was that they accidentally used the text gen code, but the code i have is merely copied and pasted from the docs with minor edits for my usage
If you're experiencing issues using the API, best to use #dev-chat and #1037561751362863144 π
oops didnt realize i switched channels in my search
guys, is there any command to make the dall e create a image of a whole sentence? like, a jpg of text
what do you mean? thats exactly what it does
do you mean, literal text?
the AI doesn't do text, it can only do scribbles that look like text from far
i mean i tried with -word "blacked out" vaporwave-
and this was the response
pretty accurate but idk
so i gotta keep trying and see what happends or...?
you'll probabily not get it
oh
the AI doesn't understand the concept of meaningful text
it only makes an aproximation of the concept of letters
but it cannot understand the proper order of the letters
i get it
thanks
sad that i couldnt make it but now i understand better the IA
:))
yea, IMO, not beeing able to get text done is a major problem with the current state of this tech
but Im pretty sure that soon there will be a way to do that
maybe not DALLE, but some AI will do it
yes! we could get really cool fonts with that
indeed, describing styles for fonts would be super cool
yo
Can anyone tell me what API means in Dall e?
hello, in the website of Dall e it said:
"Weβll invite 1 million people from our waitlist over the coming weeks. Users can create with DALLΒ·E using free credits that refill every month, and buy additional credits in 115-generation increments for $15."
does that include the API?
so can i only make 115 photos with the Dall e API, because im certain i made more than 115 photos and i can still make them?
there is no wait list anymore, anyone can jsut register
the API is part of the OpenAI already existing API (which include other stuff such as models for generating text)
the credits you get from the Dalle website registration are not related to the usage limits on your OpenAI account
they are separate systems
with separate billing
so can i only make 115 photos with the Dall e API, because im certain i made more than 115 photos and i can still make them?
the API is not free, you pay for each request unless you are on a new account which still have the initial 20$ for testing, but those credits spire
the website gives you 115 user for free, ang 15 more each month
I tried to create some fan art of Bobbin Threadbare from the PC game Loom to the best of my ability. These are some of what it came up with. I like them, except Bobbin's face in the game is supposed to be pitch-black, with only his eyes showing through the hood. The problem is that when typing in a prompt such as "a black face", or any other variations I tried (such as "blackened face", "pitch-black face", "black-colored face" and more", Dall-E's algorithm censors the output because it thinks I'm referring to blackface. Any way around this?
This is Bobbin's actual face from the game. It is simply, a black, face lol
remingds me of Noita
ot Magika
actually, it reminds me of something else...
let me just...
done
maybe shadowed face, obscured face
what are some of the specifications normally you have to write to get something more accurate?
How to get Promtober Hall of Fame badge
how can i get different variations in the haristyle for a uploaded image?
try erasing the top part of the head and write in the hairstyle you want to use.
make sure your erased parts are slightly bigger than precise.
How do I use the image extension tool?
depends o nwhat you want to do, check #1021130377026351105
upload an image, but don't crop it
then, position the area that will be generated in a way that it gets part of the existing image to provide context for the AI, and left some blank space to be filled
write a prompt and generate
rinse and repeat
Thanks
you are welcome =)
what is this?
the outpainting editor
That's not a credit cost--that's a keyboard shortcut you can use (Command + 1 on Mac, or Ctrl + 1 on Windows) to achieve that without even having to open the zoom menu.
oh 
I thought it cost a credit but I think it might have just been lagging behind for a moment and when i happened to press that button to zoom in, then checked my credits it was finally updated
How can I get the Promtober Hall of Fame badge?
You would have had to have submitted a generation during Promptober that received 30 pumpkin emotes. Unfortunately, that event ended after October 31st.
Is the word "femboy" against the content policy?
Please contact support@openai.com about this
this entirely depends on the rest of your prompt π
as long as you keep it SFW, it is ok
Not necessarily. Some words have blanket restrictions that don't let an image be generated with them in the prompt (regardless of the rest of the prompt)
yea, I know, but I dont think this is the case for this one
he is probabily asking about furry art.. and this can be really wholesome.. or really NSFW...
I just put femboy, not as a nsfw way. It just doesn't allow the word..
Shucks
I know they announced they improved the "safety" features, but I'm definitely getting worse results when using the "animal human chimera" tags. It's spitting out a lot more humans and less chimeras.
Hi! Is output always maximum 1024 pixels?
Yes
yes, the maximum resolution for any generation is 1 mp
Even outpainting?
hi guys how do i get dalle 2 provide a proper faces, all faces im getting are super mutated
There's a great photography guide in #πβresources
Are you allowed to use your DALLβE images on other AI image generation websites?
Yea, clearly says you can use them even commercially
Yeah, I get that, but the whole watermark ordeal is what concerns me. Wondering if I still have to mention that it originally was created on DALLβE before being altered by another AI.
The Terms of Use explain this π
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
So does it mean I am allowed to use it on other AI websites? Is it where it says "(d) Third Party Services. Any third party software, services, or other products you use in connection with the Services are subject to their own terms, and we are not responsible for third party products."?
Sorry... I have severe ADHD + Dyslexia, I struggle with comprehending long text documents sometimes.
Yes, you can use it in other AI websites. You could generate a DE2 image, and upscale it using Gigapixel AI for instance. With that being said, you are then subject to follow Gigapixel's TOS and OpenAI isn't responsible for how you use that service
Ah, I see, thanks! I get it now. Thank you for the explanation. Have a good one!
I just got the content rules violation for this prompt-
βPortrait of Pakistani teenage girl looking up in New England autumn forest.β
Is it the teenage girl part of that? Is Pakistani more likely to be flagged b/c in an effort to avoid racist content?
this is what dalle2 knows about pakistani teenage girl
your prompt
DALLE2 API down for anyone else?
Please read over the terms of use
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
We don't know when/if that will happen. You can always drop it in #placeholder-channel though! π
why cant it draw nsfw
Please read the Content Policy and Terms of Use.
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
rut durn it
oh well, my reply got automod'ed xD
Because OpenAI is trying to stick to ethical AI, and deep faking NSFW content doesn't stick to their ethical AI standard.
hello quick question here. does anyone knows how to make all images from API public?
via the same http calls?
your generations are private unless you make them public, so no one has an access to it but you. however there's no delete option at the moment
better to ask in #dev-chat or #1037561751362863144
did you receive any answer? i have the same doubt
Hello, I am a newcomer here and I hope this is the right place to ask questions. The system won't let me ask for: "a realisting painting of Lesbo on the beach writing poems" telling me that violates the content policy, but why? If only the name of a famous poetess activates the filter then it is a very inefficient and ineffective one.
hi, there's couple of things wrong in your prompt, first of all it's realistic not realisting, secondly Lesbo is a place not a poetess, her name was Sappho. so try adjusting your prompt like: an oil painting of Sappho on the beach writing poems or a realistic painting of Sappho on the beach writing poems
take a look at #πβresources #top-tips-and-tricks #1021130377026351105 channels to look for the references and tips
Is there a way to cross 2 images?
You can use the edit tool to combine 2 images in painting the seam to make a composition of them both, but it doesn't do style transfer
Of course not
The question was skipped as always
Yes. Avoiding deception is our primary intention. We're not enforcing that outputs are attributed to OpenAI / DALLβ’E 2. We'll update the content policy to make this clearer in the coming days!
You can read more about FAQs here.
@cinder sequoia Outputs are not required to be attributed to OpenAI / Dall-E specifically
hey, there are a lot of questions, sometimes it gets buried
you can indeed use it commercially and there is no problem removing the watermark
you may not mislead others about the nature of the work and the AI involvement
Thanks for the reply
@cyan spruce
#dev-chat message
sounds to me like a browser issue, which browser are you on?
Chrome on mobile
iOS
are you on an old phone?
this is a weird bug, that may be caused by some specific version of your browser
this shouldn't be happening anyway for whatever phone or browser you are, I'll notify the OpenAI Team
Thanks so much
btw, are you using the website https://labs.openai.com/ on mobile?
could you try switching to Safari to see if that fixes the issue?
what is the best way to get an image that looks like it was taken from far away? because using "distant, wide, and far away" have done little to change the perceived distance from the origin to the subject
also my b on putting this here, didnt see the #ββprompt-help channel til after 
By utilizing different focal lengths that cameras utilize, you may be able to get a wider field of view depending on the subject π
are you talking about the lens effect that makes everything look like small toys?
it is tilt and shift lens
no more like the picture was taken from far away
try "wide shot"
because using "distant, wide, and far away" have done little to change the perceived distance
maybe it is just a matter with the rest of the prompt
sometimes, the style you are trying to make has more weight than this words
everything on the prompt changes how the AI makes the composition, so, some times, a lot of stuff is ignored or overrided
Yes
Seems to be working on Safari. Kinda inconvenient since I pretty much only use Chrome on a regular basis
try using the applet it suggests you to install when you open the website, it is a better interface for mobile
is there a way to remove watermarks?
yes, you can use the inspect element on your browser to download versions of images without the watermark
oh that's incredible, thank you!
Today the credits they gave us in the artist financing program expire, what time or what?
is it possible to generate images with the same character/style repetitively? if i've generated an image of a person, can i feed another prompt to get the same person & style of image as if i was creating illustrations for a book for example. if so, any tips would be greatly appreciated.
Currently, this is not possible
I would say it's possible to a very limited extent--you can e.g. erase the background behind the person and subsequently inpaint a new one, thus having the same character in multiple places--but no, it's not possible for DALLE to "remember" and re-generate the same person in multiple poses/from multiple angles/etc., which is probably what you're envisioning.
thanks for the reply - could you please direct me to some tutorials for inpainting/erasing the background?
At it's simplest, Inpainting is a way to replace parts of an image using DALLβE's edit feature.
(There's more you can do with inpainting, this is the most basic and commonly used. Check the #edit-inpainting channel for more ways to inpaint.)
Upload an image or select one that you've generated with DALLβE.
Press Edit, and erase the portions of the image you want to replace.
Enter a prompt describing the image as a whole (in the example, the prompt changed from "A cat sitting on a bench" to "A dog sitting on a bench") and press Generate.
Now, in your case you're going to want the original person as intact as possible, so what would honestly be better would be to use an external image editor to delete the background instead of doing it manually with the eraser tool on the Editor. (I think most basic programs like Photoshop, GIMP, or even Paint 3D (though obviously use something better if you have it) have a lasso or "magic select" tool you can use to select the character, cut it, delete the rest of the background, and then paste the person back in. That way you have a transparent background DALLE can subsequently fill in.
thanks so much - this is really useful!
No problem. Best of luck.
who holds the rights of the images the creators of the ai or the person who enterd the prompt
the terms of use go over that and there's an update about that in #announcements
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
is there a way to download all the images of the history? because I created a big collection, so is impossible to me download 1 by 1
currently, you're limited to downloading images individually
Currently there is no way to create "an asset" in DALLE and store that asset (character or object) for ongoing use in multiple images, like an asset in a game development system. Even if you specify many details of the appearance, there are some random aspects to the generation process. This results in variations that are very difficult to control. You can get a somewhat consistent art look for a series by developing a set of reproducible art style tags, then apply those style cues to various changing subjects using a consistent prompt structure: [subject][style].
I'm trying to extend an image with outpainting, but it's not really continuing the landscape, it's just mirroring it, all the other generations look similar. Am I doing something wrong?
it is normal, try to place the generation area on a different part of the image to give only the context you want
also, avout doing 50% or less context, because this sometimes causes the AI to assume the image should be mirrored
alright, thanks so much
so I made this awhile back with the generation frame feature
and I put in the prompt "guy wearing yellow shirt and black pants, cartoon style"
but is that an effective prompt? Im confused on how to actually use the feature effectivly
can I just type in "yellow shirt, black pants" or does it need me to type the context and then what I want from it
original image for context
I think this is a question for #ββprompt-help. Additionally, if you like the output image any prompt is an "effective" one
is there any reason I wouldn't be able to use dall-e to make images and sell them as NFTs? from what I've been reading it says commercial use is allowed
well idk "You own the generations you create with DALLΒ·E. Weβve simplified our Terms of Use, and you now have full ownership rights to the images you create with DALLΒ·E β in addition to the usage rights youβve already had to use and monetize your creations however youβd like." Β―_(γ)_/Β―
Why can't I generate a picture of "Vladimir Putin with slippers cleaning a truck using a toy car"?
bc in dalle you can't generate real peoples Β―_(γ)_/Β―
i thing dalle2 got it like political "Political: politicians, ballot-boxes, protests, or other content that may be used to influence the political process or to campaign." i think
oh
ok
thanks
btw, is it okay to have both europe and asia roles if i cound as euroasian?
ye i think
sounds like a yes to me π
yes you can
Vladimir Putin, and many other politician names raise the flag on "no political content"
this is another thing, but when you name a person, it usually generates a kind of look alike person
Hey guys sry to bother but I canβt seem to be able to prompt anything anymore. I get a message saying that bot is unable to processβ¦ any idea ? π
System is working normally for me, just tested it. When you say "the bot" do you mean using the OAI web site or some API?
No Iβm sure is something related to the account but I dunno what exactly. I forgot and then had to reset the password.now it acts weird π¦
You may need to send a message to support@oai.com if it is an account problem.
Thanks π
Please keep questions in this channel related to DALLβE
Hey guys, question - is outpainting part of DALLE API ?
Outpainting and inpainting (same thing technically) are accessible via the API by using openai.Image.create_edit
https://beta.openai.com/docs/api-reference/images/create-edit
An API for accessing new AI models developed by OpenAI
The doc is not super clear on how we can extend an image horizontally/vertically with masks
Outpainting is the process of adding more content to an existing image with DALLβE. Padded empty space is added around the image, and DALLβE fills it in!
(There's much more you can do with outpainting, this is the most basic and commonly used. Check the #inpaint-outpaint channel for more ways to outpaint.)
Generate or select an image and use the !pad command in the #dall-e-bot channel.
Upload your image to DALLβE and press 'Edit'. Do not forget to erase the watermark.
Generate it with a prompt that describes what you want to see in the new image as a whole.
Hey ! Thanks for the reply - the block of code shown is not super clear on how we could extend an image
Here it shows to use a mask but not clear how this mask should be if I wanted to extend like 20% of the image on top and 20% on the bottom for example
To give context, I'm trying to build something that changes images aspect-ratio
so if I have a square I want a portrait, I would extend the image on the top and the bottom
I'm not sure how best to describe it in words, so I'll point you towards this old outpainting tutorial from before it was an official feature, and we had to do it manually via Photoshop.
#ββtips-n-tricks message
This is how "outpainting" works, it's simply the inpainting process plus stitching images together afterwards. The openai.Image.create_edit process is the inpainting process, so to achieve outpainting, you'll need to apply the same fundamental techniques as shown in the video, but with the API.
@rustic marlin will likely explain it much better than me, and I might be getting something wrong as I'm not very familiar with this part of the API.
Oh so if I understand correctly, you need to :
- Crop "out" part of the image and leave a square with X% of the image in and Y% of the image in transparent
- Apply inpainting to the new image
- Stitch back the image together ?
that's really complex
Correct that's how it works. There may be very efficient methods of doing it programmatically but I wouldn't be able to help with that myself.
I suggest taking a look at #dev-chat for more about the API and outpainting 
Thanks for the help in any case ! I was hoping it was something simpler but you can't always get what you want haha
@split hazel do you happen to know what a mask look like ? Is it white + transparent area (where generation should happen) ?
Im here for I have ben summoned =P
yes, thats exactly it
the api only handles square images
the outpainting feature is in fact just a way to implemente the so called inpaint, they both are ways to use the edit method
you need to make a few edit requests, then, composite the images back together
but in no situation you would be able to upload the entire thing (unless you actually size the image down to fit on 1024x1024)
I see, thanks a lot !
Is there a better way to generate a logo? I am part of a gaming clan called n00bs. When I generate images it does a great job but spells "nobs" π€£
dalle don't really handle text in a coherent manner
sometimes it gets small words right
but text in general is not supported
Ahh okay. That's a shame but I understand π
would recommend photoshop or something similar for doing that
thats nice that it worked somewhere, but since all generators are different Dalle isnt really focused on text generation
I'm loving dalle so no complaints here π
hey, please, don't send content from other AIs, keep it to the #ai-discussions when talking about other systems
I've deleted it.
If you donβt mind losing resolution you can zoom out too
Also you should try photopea it has dalle support
DALLΒ·E 2 is not engineered to properly generate text. While it may get a few simple words right now and then, that is the exception rather than the rule. If you need to add text to your image, consider using an external image-editing software.
For API issues see #dev-chat and #1037561751362863144.
is there a glossary out there of all the different art styles you can use?
#πβresources has some guides of various artists and styles
thank you!!! sorry i missed that lol
Idk how to say it in English so ill give an example
If someone grabs an art that I created, that person needs the creator consent?
correct. Rule #11 on the Discord server goes over that
What the rule 11 says? (I donβt know where to find those rules)
Ty
can i edit an image to a different art style? like say i have a photo of a person, can i prompt dall-e to remake it in a pop art style?
Currently, Dall-E 2 doesn't support Style Transfer
is there a way to download my canvas without the dalle mark for later uploading again?
You can use the inspect element in your browser to download without the watermark
that changes file size to small
π€ I assumed it would be the same image with the same dimensions. If you're outpainting the image, you can always erase the watermark object the editor
nope tried in the square image b4 its a thumbnail in comparison @regal lynx
photoshop yes tho then it gets rid of detail on that side or creates other artifacts
using the inspect feature on Chrome, I was able to get both of these images from the website. Both images are 1024 x 1024 pixels. Interestingly, I could only download the image without the logo as a .webp format π«€. With that being said, I can download it from Discord as a PNG file. Strange workaround, but I guess it works...?
You can actually just rename the downloaded .webp files to .png on your desktop, and all of the file information will still allow the images to render and function properly. (That does still require one to manually stitch the images together afterward, though.)
on the canvas I went into the developer setting and it took away all my outpaintings @regal lynx
so it doesn't work for outpaintings glad I saved it at least π
huh?
manual stitch?
Yes. Since DALLE saves every single inpaint and outpaint one does in your history, you can actually download the individual generations that make up your outpaint individually--without the watermark, if one uses the Inspect tab trick (and if one uses it for individual generations, they do turn out full-size)--and then manually recombine them together in Photoshop or Paint 3D. That's actually what I use to make my outpaints these days--that way I can take the parts of each frame that I like and manually stitch them together to make the full image.
Doesn't that tend to have more discrepancies since when dalle does it, it will alter the image a bit when inpainting/outpainting or do I have my info wrong?
I find it does alter my image a bit on the gens
Yes, if you try to combine two separate images over anything other than the border you originally generated them off of, they won't mesh in the slightest. But if you have e.g. distinct areas that are all self-contained (like the nine areas I erased in the example below), then one can simply pick and choose what looks best in each one and paste them in. (Sorry if I didn't do the best job of explaining it.)
Does DALL-E support prompt modifiers (e.g. to pay more attention to some parts of the prompt, use different aspect ratios, negative prompts, etc.)? If so, are these documented somewhere? (I've read the FAQs and the DALL-E 2 Prompt Book, but don't see anything in either of those.)
no, just plain simple text description of what you want
check the #1021130377026351105 to see some tips on what works best for certain goals
How do we help Dall e to identify specific things or characters for future prompts?
on edit, always describe the entire thing you want on the frame. for example, lets say you are generating a ful body character.
you could start by the head, but then, when you get to the chest / lower body, you'll get better results if you describe that you actually want a image of the character's lower body, wearing some kind of shirt, holding something. .etc..
if you don't do that, you may end up with something like.. another head being generated
Is dalify free to run?
@rugged wing No, Dallify is linked to the Dall-E 2 API. You can find pricing here (under Image models): https://openai.com/api/pricing/
Thank you
Could anyone please show me how to generate variations from a picture based on a prompt
It seems that I can't do it
The variations feature doesn't take a prompt. It only generates variations on the uploaded image as it appears
How the heckerdoodles do I get Dale to figure out text? Like I can get it to sort of do one word text but multiple words is difficult
DALLΒ·E 2 is not engineered to properly generate text. While it may get a few simple words right now and then, that is the exception rather than the rule. If you need to add text to your image, consider using an external image-editing software.
I havenβt tried this yet but I was thinking if you got a text layout you liked, you could just erase each word, one by one and overpaint each word to spell it correctly. It would take a lot of credits to try this though.
and would still not look right
way simpler would be so inpaint it to make it empty and photoshop the text
yeah I've tried this and I've gotten meh results
the kind of text I'm going for is incorporated into the style, for example:
the prompt was for "Old Rock"
What was your full prompt?
yea, making this with dalle is way harder
but small words may look correct
is there a way to have a bigger generation frame ? I see people doing amazing thing with a big image as an output and I'm wondering how
Outpainting is the process of adding more content to an existing image with DALLβE. Padded empty space is added around the image, and DALLβE fills it in!
(There's much more you can do with outpainting, this is the most basic and commonly used. Check the #inpaint-outpaint channel for more ways to outpaint.)
Generate or select an image and use the !pad command in the #dall-e-bot channel.
Upload your image to DALLβE and press 'Edit'. Do not forget to erase the watermark.
Generate it with a prompt that describes what you want to see in the new image as a whole.
you can increase the frame with outpainting tool, therwise your generations will be 1:1, 1024 x 1024 always
There are outpainting guides in #πβresources !
If I have an image that has a few transparent spots, and I want to use Dalle 2 to color in those spots but leave everything else unedited, can I use Dalle 2 that way?
yep
thats exactly how inpaint works
it fills the transparent areas
even if you erase it yourself before uploading it
I lost a credit trying to do just that, but it redrew the non-transparent area around it.
On the bottom, I have an image I'm working with. You can see the transparent bit. It's also clear that the area is still transparent when I upload it up onto OpenAI.
Then on the top is one of the variations it came up with. It worked outside the limits of the transparent space.
I strongly suspect the underlying problem is that DALLE's not great with context, and in its mind the transparent space can be potentially filled with absolutely anything. In this case, I'm guessing DALLE-2 saw some transparent space and a prompt along the lines of "an anime person running," and dutifully tried to fill in the transparent space with an anime person running, instead of realizing the surrounding image was the anime person running. I've actually had the exact same thing happen to me before when I gave it the top image below and asked for "tail of a mermaid in a hallway" in hopes it would fill in the background, only to have it utterly ignore the tail I gave it and return the bottom image instead.
In your case, I'd recommend erasing far more of the image (so the AI has more space to work with, since it will often give up on adding details if it doesn't think it has enough space for them; I've had that before as well when trying to inpaint wings on a person) and have the AI just regenerate the entire legs themselves. If you want, you could try a prompt that explicitly mentions the woman's legs/shoes to draw more focus to it (e.g. "legs of an anime woman on a treadmill" instead of just "anime woman running on a treadmill") to draw more focus to them and maybe reduce the chance of getting a full-body inpaint like you received, but I'm honestly not sure if that would help or just lead DALLE to getting more confused.
Regardless, If you're trying to just do something simple like get different-colored pants on the original image, the easiest way would probably be to hue-shift the original colored image manually instead of trying to replicate it with DALLE. (Though if you're taking a black-and-white image and trying to add color to it, which is what I suspect you're doing, I suppose that isn't exactly possible.)
this button
How can I chat in dallify chat
The Dallify channels are archived as the bot isn't active at the moment
When will they get activate

uhh, could you describe in more detail?
yo is there a way to upload a photo to dalle and turn it into the style of a painting?
Currently, style transfer isn't supported with Dall-E 2
so there isnt a way to generate a specific kind of variation?
NightCafe has style transfer.
combinign AIs usually have good results..
do the style transfer on another one, then upload to Dalle to inpaint it and Dalle will keep the image style
You can run dallify yourself
Are you using an online SMS service to register? For account security and for your privacy, I do not recommend this because your account can be easily compromised and all your SMS can be intercepted. (I'd recommend an admin delete this post above for you.)
Are generations in the βcreepy pastaβ or βSCPβ style allowed?
@rugged wing As long as they don't break the content policy, yes
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
Just be mindful when it states that you can't generate images that are
Shocking: bodily fluids, obscene gestures, or other profane subjects that may shock or disgust. (This includes blood)
You can't yet as the editor is still in beta, I recommend not closing the editor tab if you plan to continue later
Are you using a browser or extension that puts inactive tabs to sleep to save memory?
There's probably a way to exclude the editor tab from that process to prevent it from refreshing and losing your progress
a teratoma with a face, photorealistic
is it possible to get a refund of the credit i spent on that one? it is not to specification in any way.
You can report generations for "Image doesn't match my text description", but you won't be refunded the credit
thanks
Hi. How can I create images with dall e 2 here in discord?
That isn't a feature of the server currently, but you can add the dallify bot to your own Discord server!
Thereβs not currently a formal setting to do that, but (for individual generations) you can still obtain the non-watermarked version by finding the link to the raw image in the pageβs Inspect tab. (Most browsersβor at least I know Chrome doesβhave an βInspect elementβ option on the bottom of the right-click menu, that you can use after right-clicking the generation to pull up the link to the non-watermarked version.)
hi, what exactly isn't working, maybe i can help?
If it helps, what I personally do when outpainting is download all of the relevant original images individually without the watermarks (using the Inspect tab trick), stitch them together in another image editor to see what combinations looks best, and then only upload to the editor when I need to generate a new piece of the image. Itβs hacky and requires an annoying amount of calculations to make sure each image is getting placed in the exact right spot, but it also actually handles both of the problems youβve mentioned so far: all of the outpaints are saved locally on my computer, so I donβt have to worry about the editor tab possibly refreshing and deleting my work, and I also have all of the images fully assembled without the watermark already, and thus I donβt have to download it from the editor and subsequently have the watermark automatically pasted in the corner.
You could also download the image from the editor and use Google Snapseed's healing feature to erase the watermark, object Eraser on most phones to do it, or photoshop, etc.
I thought it was in closed beta or something
It was! It's now open source though π₯³. The details are around here somewhere...
#dev-chat message
Here it is!
Sweet, thanks!
When creating edits does getting realistic results take a bit of luck or is there a good way to edit?
For example, I'm trying to make a picture of two robins. I have corrected some of their features but getting their feet right is seeming really hard
could you head to #ββprompt-help , give your output images and prompts you're currently using π
Anyone know why I canβt download generated images off browser?
what browser and device are you experiencing the issues on?
@regal lynx Safari MacBook
hmmm, that's rather strange. What happens when you try to download an image?
Unless Iβm missing something, I donβt see the option to download it
can you see it in your history to download?
Thanks π€
Hi
I would like to know if this is possible to generate images based on french text ?
It seems that yes
if you mean, generate prompts in french, it does understand
can I ask what datasets is used in dalle?
I don't believe it's publicly known
all it is known is that it is made from images scrapped from the internet
i mean.. all of the AIs available are, but I think that the Dalle dataset is the biggest one, while some like SD are more hand picked
I would love to see some discussion about that on #ai-discussions
can I ask you more?
Sure, but im just a volunteer, im not from OpenAI, I don't know any more that what is publicly known
that's okay its just not for OpenAI.
Cuz I'm just a student, that is having a thesis rn. and we're building an application similar to dalle. is there a way that you can give us insights?
sure, btw, if you are planning on making some code, check #dev-chat feel free to ping me for that =)
we don't have a code yet but our dilemma is about using the API of Dalle in our thesis paper. The panelist don't like that the datasets in Openai is limited time or limited generation only.
any suggestions?
what do you men by that?
do they expect you to attempt to use AI to generate """bad""" content?
how can someone dislike the dataset when they don't know what's in it π€
I mean limited like in openai the trial is only 3 months and $18 free
they don't like us to spend money to in using openai
but its limited right?
ohh
well, im pretty sure yo ucan get enough material out of it with those 18$
each image costs 0.02, with 18$, it is a total of 900 generated images for free
after that.. yea, you have to pay
but thats not what the panelist want on us.
im not sure if Im understanding
what are you planning to do?
do you think you'll need more than 900 images for your thesis?
that's our point too tho hahaaha
uhh, with "limited" are you talking about the restrictions on the subject of the content generation defined by the content policy? or the restrictions on how much you can use it for free?
limited in the usage of the API text to image
Hi, is there a problem with editing images? I set a generation frame and a prompt, submit, then it loads, and appears to give me 4 options in the generation frame, but each one is just empty, ie its just a box around a section of the original image
ok, but you are asking about how much you can use it or how the subject of the content are limited to only G-Rated?
how much you can use it.
this happens sometimes when the response from the website didn't loaded, wait a few more seconds, specially if you are on a slow connection
I think the panelist want Unlimited generation of image lol
for the API, after you create your account on the OpenAI API website, you get $18 for using on the many features of the API, not just image generation
assuming you use that only to generate 1024x1024 images, you can get a total of 900 images
you can generate smaller images and it will cost less
if you don't use those 18$ in 3 months, it expires
there is no such a thing.. ever, on any AI image generation service
I'm on a fast connection, and even if I wait for 1 minute it's still the same...
next best option is to get a nice GPU and run some of the Open Source software that does this, but then, it has nothing to do with OpenAI
just to be sure, go to the History page, check if it shows up the results you would've got from the edit
if we're building from scratch right? we need a good GPU and the user should have it too right?
a good specs of computer?
ah i see - i think you can't just add stuff to an existing image. I'm trying to add something to an existing photo, and i thought just putting the generation box over the place i wanted the new thing to go would work. I think you need to erase a portion of the existing image, and then it will replace that bit with new stuff
ohh, yea, thats is exactly it xD
Correct.
You could mask out the sky and prompt it for fog
It might work.
maybe if you are tricky, but in general, style transfer is something that the AI does not do
β’ You get 50 free credits your first month.
β’ 15 free credits will replenish every month after that, on the same day of the month.
β’ For example, if you signed up on August 3rd, your free credits will refill on September 3rd.
β’ If you joined on the 29th, 30th, or 31st of every month, your free credits will refill on the 28th of every month.
β’ Free credits donβt roll over to the next month, so they expire after month after they were granted β but youβll get 15 new free credits.
β’ Paid credits will expire after 12 months from purchase.
You can't see them when you click on your profile pic?
Check how many generations youβve made in your history sidebar. Each generation = 1 credit.
Have you bought any credits recently?
Would be hard to track then, you would need to count manually. New accounts should be receiving 50 DALL-E credits, if you think you did not receive yours, please forward your concern to support@openai.com.
I didn't really get the question, you can turn your generations into designs if you want to. if you mean mockups, like t-shirt mockups, it can give you mockups based on your prompts, but they won't serve as psd mockups. regarding stickers, depends the style you're aiming to. The simple word "sticker" in your prompt can trigger and generate what we regard as stickers. try simple prompt like "a sticker of a cute little dragon" or something...
ok thanks
a cute dragon telegram sticker. for e.g.
Awwwwwww
I'm new to DALL-E 2 and AI art in general but I can't find this answer anywhere. Why are most of my created images cut off on the sides or top and bottom or all sides and not show a full character? Is there a certain prompt to insure getting the whole figure?https://labs.openai.com/s/zxIliutCoxnSjuX7zc6kGiqK
I haven't been able to get a full length person either
hi, from my understanding unless you specify the position of your subject it gives you cropped in order to preserve the style and continuity if you try to outpaint it, it has to have some base to built future content on. That particular prompt that i came up with was with outpaint in mind since Mucha is generally known for his long vertical posters, so it isnt really surprise that it crops.
ok thank you. I have tried several other prompts without Mucha (this was the first) and it does same thing. I took it to outpaint but I could only fill out the top or the bottom. But I do understand what your saying about using that name in my prompt.
unless you specify by adding medium words responsible for keeping your subject within frame, it will crop.
Do you know where I can search for those "medium words" to keep within frame? I have spent most of the day trying to find some prompt words for that but found nothing. Thanks again
#πβresources and #1021130377026351105 have some tips, also you can check this doc https://docs.google.com/document/d/11WlzjBT0xRpQhP9tFMtxzd0q6ANIdHPUBkMV-YB043U/edit#heading=h.9l4yey2tbzos. there might not be one general word that can affect the prompt same way. sometimes even the simplest solution like ending your prompt with "on a white background" can help
DALLΒ·E 2 Prompt Engineering Guide (created by rendo1#6021 & luc#0002) Welcome to the Prompt Engineering Google Doc! This document will go over all general modifiers used in prompts with further information, examples in real-life, and examples of how DALLΒ·E 2 interprets the phrase. This is a f...
Thanks for all your help.
hi! I've seen people do selfies in a cyberpunk style and I was wondering how I could do this with Dall-e, I've seen people do it with MJ like this
Dall-E 2 doesn't currently support style transfer
How can I join dalle 2? Every time I wanna enter it just get me to dall e 1
The invite you received from OpenAI is for DALLΒ·E 2. The first version of DALLΒ·E, version 1, was never released to the public.
Read more here: https://openai.com/dall-e-2/
@fast fossil β¬οΈ
But... It doesn't say DALLβ’E 2. It just says DALLβ’E
And so, how can I make that erase a part of the image and put another thing?
that's called inpainting. you can do it through the upload button, cropping the image, choosing edit, and then using the tool to edit the portion you want "erased"
then type in a prompt and generate.
Ooohhhh, okey, now I understand. Thank you Sloth and Dinosaur!
I've been trying to outpaint a portrait image into a landscape
but I'd like to reference the grass from the right side when making the left.
hi, what prompt are you using in this particular case for this frame?
damn, this is a huge picture
That looks amazing
Hey, if I use an image generated with DallE as a music cover, does the DallE logo have to be visible in the lower right corner or can I use the image without the logo? Thx
The content policy addresses this π
OpenAI Terms of Use - https://openai.com/api/policies/terms/
DALLβE Content Policy - https://labs.openai.com/policies/content-policy
Additional DALLβE Terms of Use - https://labs.openai.com/policies/terms
was the answer yes or no?
I didn't find it after searching for corner or logo.
i need help
i changed phone
cuz my phone is broken
but i think dall e didnt asked me the phone number
verification
on the Content Policy it states:
would you mind to ellaborate the problem?
are you not able to login?
The answer is yes "can I use the image without the DallE logo?"
nono, i can login but i think i never getted a phone number verification
sry for th bad english
if you can login, it should be fine then
I'm wondering if others had this issue (and hopefully a solution π ) for these artifacts I often get when inpainting.
I'm trying to use DALLE-2 to fix texture seams in the image it originally created, but on most attempts the image it draws ends up getting overly saturated (almost has a burnt look to it).
by my use experience, the more you inpaint, more it will deviate from your original goal
the best is to erase as little as possible to give the largest amount of context possible to the AI to avoid such artifacts
Anyone an expert at this thing? I keep failing at what I want to make, guessing my input is just unclear, but unsure how to clean it up..
Trying to create a picture of a large nose, in the colors of the rainbow, smelling smoke that is also in the colors of the rainbow, and it's all supposed to be kind of impressionist, using van gogh as a prompt.
I only manage to get one part correct, but when trying to combine them it goes all haywire.
You can try using inpainting, or other photo editing software.
Yeah, that was my solution as well, but it would be fun to make this thing work π
anybody from the team around here ? I completed the feedback form for the creators and was supposed to be alotted some extra credit for that but I didn't receive it.
Please send an email to support@openai.com
Is it possible to change the a face of someone without changing the person?
For example, if you erase the person's face and ask dalle to put a sad face, then it puts a sad face of someone else, not from the se person
I'm not 100% sure, but I don't see why it wouldn't be possible π€
you can generate new faces, but if you are asking for it to do style transfer of the image, then no
you can probabily get what you want with external image editing tools in combination with dalle
Oh...
Is this what you're asking about @fast fossil ?
https://labs.openai.com/s/MJy7ta6pKyaohzAofWJD76Tp
https://labs.openai.com/s/g8eFLqZQdO6woq09doTFnsFA
Kinda. I want to insert a photo and edit it, and change the facial expression of a person, without changing the face of the person.
A person I upload
I don't think you'll have much luck changing the facial expression due to how subtle and complex they are
Okey, thanks for letting me know!
yea, this is hard to do
the problem is that a "sad face" isn't a matter of just the position of mouth and eyes, you would need to inpaint the entire face
what you would be able to do is to take a photo, devete everything except the face.. and generate around it
Try the trick by using half the image for the person and leave the other half transparent and tell it to generate the same person with a different expression
how do I get Dall-e to render a photo that's not up close? I want my sisters holding their dog but one with their entire bodies and not something up close
If I can ask, are you attempting to extend an existing photo, or generate a completely new image from scratch?
hey everyone, is there a desktop application for dall e ?
So far the only methods of using DALLE that OpenAI has publicly released are the website and their API. Given the API is open-source now, someone might have made a desktop application themselves and released it, but I don't know any off of the top of my head--the best place to check for that would be #1037561385070112779 or simply Googling for one. (Though I would obviously recommend checking the source code of whatever applications you end up finding if you can, just to be safe.)
Im just wanting to generate 1 photo
sometimes it does it sometimes not so trying to figure out how to make it happen, force the photo to be zoomed out and not up close
what prompt do you use?
#πβresources message this guide from our #πβresources channel, may be helpful
why can you not generate blood? it does limit its capabilities when it comes to texture design.
sensitive bodily fluids aren't allowed
you can check the content policy here https://labs.openai.com/policies/content-policy
#1021130377026351105 tip #17 should help you identify the art style π
For future notice, this may be best in #ββprompt-help but I would reccomend something like "apocalyptic" or "desolated landscape"
If you are on a PC, it will look something like this
Here is a prompt you can toy with and test https://labs.openai.com/s/OGQ5GNtucPtEzHmoPwjBEgBb
two eggs toast and coffee,pop art style,roy lichstistein
this discord does not generate images
check the site: https://labs.openai.com/
I just wanted to make sure you can use an image of your own face now right?
Yup! You can upload and edit images of people as long as you have their consent to do so
Since dalle's api is publicly leased now, is there a place to see everyone providing dalle's imaging services?
I don't believe so, but you can look it up and find quite a few companies using DE2!
Iβm trying to nail a specific style by a popular old French artist Francois desprez specifically his drolatiques pantagruel work. My prompt specifically mentions his name and book and itβs not hitting the mark how can I phrase it properly so that it replicates well
hi. it could be because he wasn't included in the training data, so dalle2 wouldn't know who he is, let's check first if it understands the artist.
what you can do is to find the art direction he was into, then try to frame your prompt in a way that gets closer to the era rather than artists(since it doesn't know who he is), check #πβresources and #1021130377026351105 to get some ideas
Are there any plans to make public images shared via the web interface discoverable? AFAIK the only way to find these images now is if someone sends you the link
You can view some server members' collections in #1036148240434860033, but in general I don't think OpenAI has announced anything akin to that yet--to my knowledge, at least, given I don't work for the company in the slightest. (You could try dropping that suggestion in #placeholder-channel, though, I suppose.)
Awesome thanks!
Can DALLE be used commercially?
A friend and I are curious. The plan was to create a card game, where every artwork is 100% AI Generated.
Yes. The primary catch is that you have to make it explicitly clear that the images were AI-generated by DALLE, though. (I believe the Terms of Use on the OpenAI website go into more detail.)
Thank you
Yes.
Question: I'd like to generate pics similar to those on this website. What specifications should I add apart the theme?
hi, your question is too vague, which website you're referring to?
if yo uare talking about the labs, every example image there has its prompt as a suggestion on the "surprise me" button
maybe not every
but I'm sure that every image that shows up on the loading screen does
Sorry, tired
the AI must be trolling me
Hey guys, is there any way to make AI generate landscape images instead of square?
The AI itself can only generate 1024x1024 images each time, but you can use outpainting to add more generations to the sides of your image and thus extend it horizontally. It isn't cheap credits-wise, but it does allow you to create landscape images. (See https://labs.openai.com/editor .)
Outpainting is the process of adding more content to an existing image with DALLβE. Padded empty space is added around the image, and DALLβE fills it in!
(There's much more you can do with outpainting, this is the most basic and commonly used. Check the #inpaint-outpaint channel for more ways to outpaint.)
Generate or select an image and use the !pad command in the #dall-e-bot channel.
Upload your image to DALLβE and press 'Edit'. Do not forget to erase the watermark.
Generate it with a prompt that describes what you want to see in the new image as a whole.
Hey all im new here . Whqts is the best way to get photos the most realistic
there are more in-depth outpainting guides in #πβresources π
this is a question for #ββprompt-help. What are you looking for in your images?
Im trying to get a realistic photo of hamburger on a worldcup trophy on soccer field .. but it wasent that good
Thats what i got
I recommend reading over #1021130377026351105 tip #1, 3, and 5. Can we move this discussion to #ββprompt-help ?
Yes thank you
the burgers look like foots π
Yeah and ot osnt the trophy of the worldcup
xD
maybe download a pic of it anf upload it to dalle2 amd erease the area around it
Il try that thank you
yw. lmk how it went
@supple sedge i dk how to do it .. itried and no success
@supple sedge i did that but how i comine it with what i want
ill send u a vid
Are all the photos i get are commercial use? I want to edit them for posts i make
Subject to the Content Policy and Terms, you own the images you create with DALLΒ·E, including the right to reprint, sell, and merchandise β regardless of whether an image was generated through a free or paid credit.
Is there a way to take a cutout of a person and put it into different backgrounds?
I recently got some professional photos done for work, and for some of them they used a white background. Iβd like to be able to cut myself out and put it in front of different backgrounds, like an office building, in front of an audience, at the helm of a pirate ship, what have you. How can I do this?
You an delete the background with a third party app and run it through DALL E 2, or you can manually erase the background in the editor.
@short salmon so i tried that.. it kinda works.. but it seems to really want to make my ears bigger
it's kinda hilarious what it does with my ears tbh.. it makes them huge.. also makes my hair go crazy
is it ok to post api images? i know these generations won't have a dall-e watermark
Yes
OK. Inpainting. I am at a complete loss. I have basically never been able to get it to do anything like what I want. Usually I have an image of a landscape, and I'm hoping to add something - say a wind turbine. And it's just never ever even close. Any tips? Am I using it wrong?
I've tried prompts like "windfarm", or "three wind turbines", or "windmills", or "wind turbines in red sea"
& I've tried rerolling again and again
This is the best I've got after maybe 10 goes:
Hi. The source of this is Mj?
Try erasing more of the image
your erased parts are too small. generally, if the space is small for the new subject to fit in, the system automatically connects and paints what it understands missing, in this case, these aren't enough to generate turbines. unless you specify their size
How do I generate more of my picture, I'm in the place in Dall-e where you edit stuff, and I just learned about Dall-e yesterday. Can someone tell me how?
you just need to upload your image on the website, when it asks if yo uwant to crop it, don't crop
There are outpainting guides in #πβresources π
how do i save my images i gotten from my python file
hi everyone, I am wondering why some AI art upsizes (in photoshop) to 300dpi pretty decently, and some does not, is that just due to the type of art style the is ultimately used?
might also just be more obvious in any kind of line art or thing with a face
hi, can I ask for the reference? depends on the style I guess
Right now I am so new - and realized i may not be in the correct community channel - my only reference is just what I am seeing in Photoshop. this for example after I resampled to 300, seemed great, and is only at 15.3% zoom, as I zoom up I completely cannot see the entire pic anymore but all the quality looks good. almost ready to print to art paper.
Other stuff i have done on dall-e2 does not seem to fair as well after resample to 300dpi
this was generated by dalle2?
mainly the generations here are 1024x1024 up to 96dpi
it is hard getting used to art in PS zoomed in at those levels too... you have to get used to doing art on tiny portions of the artboard, without seeing the whole painting sometimes. ...
dandelion was Mid
this one for example is Dalle- but would expect to need to do more work due to art style - bird faces etc
overall I still really need to learn to setup art for print in photoshop - but def dif channel π
I would venture - being well versed in Dalle-2.. at this moment.. what I saw in the midJ trial was impressive, possibly better with abstract art even
I think mostly we do not have the appropriate expertise for this question. I suggest asking about it on a Photoshop forum where there are more expert users.
yes. Such a beautiful revolution all these art ideas. Thank you for making the tool available!
Ok
remember, if you're printing that DPI is part of the equation.
And can often be misleading.
A 1024x1024 picture at 72 DPI can still be printed at 300 DPI as a 3x3 image.
300 pixels per inch is what you should focus on for upscaling, and then if you have the software resample.
I'm getting a content warning for "top down view of a hand spread out on some grass" I can get around it, but curious why this is getting flagged
okay awesome, coding for day job now, but will come back and do a dive to decipher all the mysteries. Blessings.
Printer arrives Nov 28th!! so excited
We don't know how the safety filter works. I recommend altering the prompt or stop trying to generate that image to avoid being banned by the automod!
Will DALE2 have the capability in the future to use your own start image and blend with its current algorithm?
We're not sure what's being worked on, but maybe! You can drop suggestion and feedback in #placeholder-channel
@regal lynx thanks ππ½ββοΈ will do
question: dalle quality has declined since before the release. Has there been any plans to restore it now that there are better alternatives for a cheaper price?
you mean dalle2 generation quality?
Yeah
Hey hey, I've got a question regarding the storage of uploaded images for inpainting. How are these stored and are these stored safely? Are the files accessible by other people except me? Any info regarding this topic is welcome! Thanks!
everything you generate on the labs website is stored by OpenAI, this includes the original image and the inpaint results
you can see it on the history tab
your history is not public
you can select individual images to share, which generates a perma link to them
and also do the same with a collection, which is not public unless you use the share feature on it
even for what is public, there is no way to fetch a list of public pictures, you must have the link
Thanks for the answers! When I upload an image I see it's stored as a blob. When quitting inpainting and without generating anything (so basically I'm not using the uploaded image at all) the blob is still accessible. Will these unused blobs be cleaned up automatically. And if I'm not mistaken, I'm the only one who can see this blob, correct?
the editor does not actualy upload the image
it only uploads the frame when you click generate
in fact, it doesn't even upload the whole image when it is bigger than the frame
it works mostly client side, the UI just composites the API results
since December is just around the corner, will there be a promptober kind of event for Christmas?
I mean, there were some christmas/winter themes that happened during Promptober, and those did pretty well despite it being completely off topic
There has not been an announcement about an event like this
π
I just got access to Microsoft Designer and I want to ask this:
Is the Dalle2 image generation feature in Microsoft Designer limited? (As in credits etc)
I do not know. I recommend emailing Microsoft's support email and ask them
What does the "pay as you go" means, displayed on a "pricing" page?
This is entirely up to you! Sometimes, I add "phenomenal color" to my prompts to get more "artsy" images. When I try for realism, I don't add anything about color in prompts
@jolly lake depends what you want and what you're trying to generate
I believe this option allows you to generate as many images as you'd like with the API and it will draw money from you bank account connected to your profile as you generate π
Yes, it will know color and colour
When in doubt, add both!
I don't get it. I pay whenever I click "generate" - the 0,02, but it doesn't mean I will use it. Sorry, I'm not the best in English, maybe that's why I don't clearly understand. So it's Just you don't get a credit, you just pay and go on?
@mellow dragon Every 1024 x 1024 image you make with the API is $0.02 . The pay as you go option will draw that money as you generate images rather than putting $15 into it and receiving credits in the account. Whether you do anything with the image or not, it still costs $0.02 as it used compute resources. The people in #dev-chat will know more about how it works than me!
The labs website takes 1 credit for 4 1024 x 1024 images
No worries!
Gm! I'm having issues with the eraser- it keeps giving me the box/generation frame- is this something new or a bug?
i think it is a bug, there where a few times I got stuck on this screen
I downloaded the image and refreshed the page
yeah, it works when I crop the image, but not when I leave it uncropped.
ohhhhh, nvm
it is working as intended
i tought you where stuck unable to change the tool
no, this is the new image editor
if you move the generation frame you will be able to do out painting
guys how do I add a word to my AI picture?
DALLΒ·E 2 is not engineered to properly generate text. While it may get a few simple words right now and then, that is the exception rather than the rule. If you need to add text to your image, consider using an external image-editing software.
on the image generation part.. is there a nsfw switch?
like something which prevents the generation of nsfw images
I dont think you can do anything remotely nude or sexual
not even kissing is allowed
There is not. Please refer to the Content Policy for more information: https://labs.openai.com/policies/content-policy
no I didn't mean it like "I want to do that". I meant it like "I'm afraid this might happen in my community and I want to check if there is a switch for that to prevent the usage from this outside of nsfw channels"
thank you
Apologies if this has been asked a billion times already - but is there any ability to fine-tune dall-e based off your own model of training images?
There is not.
Thank you!
sounds like an XY problem
what are you actually trying to do?
there is a createModeration method on the API which you can pass a text prompt and it tells you, without charging, if it woulkd be flagged
I do'nt think there is a simmilar one for the image in the case of eddits
Can I generate a popular Disney characters with Dall E2? 
wherever I ask the questions, people send me to the other discussions π
Sort of. D-E2 knows many characters, but doesn't recreate them 1:1.
well I want to check if the image command was executed in a nsfw channel. the google api for example has a "safe_search" option, which I can enable or disable whenever it was executed in a nsfw channel
are you talking about coding a discord bot?
oh yes sorry I missed that information. Yes I'm coding a discord bot
here we help with the OpenAI API
but, if you are using DiscordJS, what you want is channel.nsfw
im pretty sure it works on a channel partial, so you don't need to fetch it
No you got me wrong.
I'm coding a discord bot and I wanted to know if there is a check in your api which enables or disables the generation of nsfw images.
And I'm also coding in py, not js
you should not make NSFW prompts at all
if you do it will reply with an error for content policy violation
That's the answer I needed. Thanks!
there is a free endpoint on the API createModeration that will reply if the prompt violates the content policy or not
using it is free
don't actually try to generate potentially NSFW prompts, use this check before
Ahh that's neat. Is there a py snippet I could look into which includes this check?
also, be careful that just because createModeration says it is ok and the AI actually generate it that doesn't mean it is ok with the content policy
that just pass on the automated filter
Hmm okay. But still having this in my code would help
Okay
I don't have one, I mostly used the JS lib
try asking on #dev-chat
I will if I encounter problems. Thanks!
you are welcome =)
