https://platform.openai.com/docs/api-reference/images/create?lang=python 을 참고하면서 프로그램을 짜보면 됩니다.
이미지 생성 기본 모델은 달리 2 입니다.
# ChatGPT 이미지 패키지 불러오기
from openai import OpenAI
client = OpenAI(
api_key = "api key value"
)
userPrompt = input("생성할 이미지의 설명을 입력해주세요: ")
response = client.images.generate(
model="dall-e-2",
prompt=userPrompt,
n=1,
size="256x256"
)
print(response.data)
영어로 cute cat 입력해봤습니다. 한국어로 입력하면 인식을 잘 못합니다.
생성된 이미지는 60분 뒤에 사라지기 때문에, 이미지를 활용하고 싶으면 시간 안에저장해야 합니다.
이렇게 다양한 예시를 찾아볼 수 있다.
링크 : https://platform.openai.com/docs/examples
https://platform.openai.com/docs/api-reference/images/create?lang=python