File size: 482 Bytes
ec62272
 
 
b52351a
eaed816
b52351a
ec62272
 
 
 
 
eaed816
 
ec62272
eaed816
 
 
 
ec62272
 
b52351a
eaed816
ec62272
 
 
b52351a
5801106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import openai
import gradio as gr

from openai import OpenAI
client = OpenAI(api_key= "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")





def get_image(prompt ):
response = client.images.generate(
  model="dall-e-3",
  prompt= prompt,
  size="1792x1024",
  quality="standard",
  n=1,
)
    



demo = gr.Interface(fn=get_image,
                    inputs = [gr.Textbox(label="Enter the Prompt")],
                    outputs = gr.Image(type='pil'), ).launch(debug='True')