Hodnota Nvidie dosiahla bilión
Diskusia k článku: Hodnota Nvidie dosiahla bilión
Prispievajte do diskusií ako
prihlásený užívateľ.
Komentár, na ktorý odpovedáte:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ChatGPT
Od: Joshinkov brayrancov konov brat
|
Pridané:
2023-05-31 01:02:33
import openai
import webbrowser
openai.api_key = "https://platform.openai.com/account/api-keys"
response = openai.Image.create(
____prompt="Surrealist dream oil painting in the style of Salvador Dali about the expulsion from paradise. Adam has a bottle of wine in his hand. Eva holds a glass of wine in her hand.",
____n=3,
____size="1024x1024"
)
for x in range(3):
____image_url = response['data'][x]['url']
____webbrowser.open(image_url, new=0)
|