Spaces:
Runtime error
Runtime error
add ability to render a comma separated list of images that get displayed in a gallery. Must right click and choose save as to download each image
Browse files
app.py
CHANGED
@@ -44,49 +44,56 @@ try:
|
|
44 |
except Exception as e:
|
45 |
print(e)
|
46 |
|
47 |
-
def
|
48 |
# add a conditional to check for a valid password
|
49 |
if pw != os.getenv("PW"):
|
50 |
# output an error message to the user in the gradio interface if password is invalid
|
51 |
raise gr.Error("Invalid password. Please try again.")
|
52 |
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
|
92 |
with gr.Blocks() as demo:
|
@@ -95,14 +102,14 @@ with gr.Blocks() as demo:
|
|
95 |
pw = gr.Textbox(label="Password", type="password",
|
96 |
placeholder="Enter the password to unlock the service")
|
97 |
text = gr.Textbox(label="What do you want to create?",
|
98 |
-
placeholder="Enter your text and then click on the \"Image Generate\" button
|
99 |
-
"or simply press the Enter key.")
|
100 |
|
101 |
model = gr.Dropdown(choices=["dall-e-2", "dall-e-3"], label="Model", value="dall-e-3")
|
102 |
-
btn = gr.Button("Generate
|
103 |
-
output_image = gr.Image(label="Image Output")
|
|
|
104 |
|
105 |
-
text.submit(fn=
|
106 |
-
btn.click(fn=
|
107 |
|
108 |
demo.launch(share=True)
|
|
|
44 |
except Exception as e:
|
45 |
print(e)
|
46 |
|
47 |
+
def generate_images(prompts, pw, model):
|
48 |
# add a conditional to check for a valid password
|
49 |
if pw != os.getenv("PW"):
|
50 |
# output an error message to the user in the gradio interface if password is invalid
|
51 |
raise gr.Error("Invalid password. Please try again.")
|
52 |
|
53 |
+
image_paths = [] # Initialize a list to hold paths of generated images
|
54 |
+
# Split the prompts string into individual prompts based on comma separation
|
55 |
+
prompts_list = prompts.split(',')
|
56 |
+
for prompt in prompts_list:
|
57 |
+
text = prompt.strip() # Remove leading/trailing whitespace
|
58 |
+
|
59 |
+
try:
|
60 |
+
client = OpenAI(api_key=openai_key)
|
61 |
+
|
62 |
+
response = client.images.generate(
|
63 |
+
prompt=text,
|
64 |
+
model=model, # dall-e-2 or dall-e-3
|
65 |
+
quality="standard", # standard or hd
|
66 |
+
size="512x512" if model == "dall-e-2" else "1024x1024", # varies for dalle-2 and dalle-3, see https://openai.com/pricing for resolutions
|
67 |
+
n=1, # Number of images to generate
|
68 |
+
)
|
69 |
+
|
70 |
+
|
71 |
+
image_url = response.data[0].url
|
72 |
+
|
73 |
+
try:
|
74 |
+
mongo_collection.insert_one({"text": text, "model": model, "image_url": image_url})
|
75 |
+
except Exception as e:
|
76 |
+
print(e)
|
77 |
+
raise gr.Error("An error occurred while saving the prompt to the database.")
|
78 |
+
|
79 |
+
# create a temporary file to store the image with extension
|
80 |
+
image_response = requests.get(image_url)
|
81 |
+
if image_response.status_code == 200:
|
82 |
+
# Use a temporary file to automatically clean up after the file is closed
|
83 |
+
temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.png')
|
84 |
+
temp_file.write(image_response.content)
|
85 |
+
temp_file.close()
|
86 |
+
# return the file with extension for download
|
87 |
+
# return temp_file.name
|
88 |
+
# append the file with extension to the list of image paths
|
89 |
+
print(temp_file.name)
|
90 |
+
image_paths.append(temp_file.name)
|
91 |
+
else:
|
92 |
+
raise gr.Error("Failed to download the image.")
|
93 |
+
except Exception as error:
|
94 |
+
print(str(error))
|
95 |
+
raise gr.Error(f"An error occurred while generating the image for: {prompt}")
|
96 |
+
return image_paths
|
97 |
|
98 |
|
99 |
with gr.Blocks() as demo:
|
|
|
102 |
pw = gr.Textbox(label="Password", type="password",
|
103 |
placeholder="Enter the password to unlock the service")
|
104 |
text = gr.Textbox(label="What do you want to create?",
|
105 |
+
placeholder="Enter your text and then click on the \"Image Generate\" button")
|
|
|
106 |
|
107 |
model = gr.Dropdown(choices=["dall-e-2", "dall-e-3"], label="Model", value="dall-e-3")
|
108 |
+
btn = gr.Button("Generate Images")
|
109 |
+
# output_image = gr.Image(label="Image Output")
|
110 |
+
output_images = gr.Gallery(label="Image Outputs",columns=[3], rows=[1], object_fit="contain", height="auto",allow_preview=False)
|
111 |
|
112 |
+
text.submit(fn=generate_images, inputs=[text,pw,model], outputs=output_images, api_name="generate_image")
|
113 |
+
btn.click(fn=generate_images, inputs=[text,pw,model], outputs=output_images, api_name=False)
|
114 |
|
115 |
demo.launch(share=True)
|