Spaces:
Runtime error
Runtime error
add ability to toggle tips / prompts
Browse files
app.py
CHANGED
@@ -122,7 +122,6 @@ def generate_images(prompts, pw, model):
|
|
122 |
prompts_list = [prompt for prompt in prompts.split(';') if prompt]
|
123 |
|
124 |
for i, entry in enumerate(prompts_list):
|
125 |
-
print(i)
|
126 |
entry_parts = entry.split('-', 1) # Split by the first dash found
|
127 |
if len(entry_parts) == 2:
|
128 |
#raise gr.Error("Invalid prompt format. Please ensure it is in 'initials-prompt' format.")
|
@@ -165,28 +164,27 @@ def generate_images(prompts, pw, model):
|
|
165 |
image_paths.append(image_url)
|
166 |
image_labels.append(image_label)
|
167 |
|
168 |
-
except Exception as
|
169 |
-
print(
|
170 |
raise gr.Error(f"An error occurred while generating the image for: {entry}")
|
171 |
|
172 |
return image_paths, image_labels # Return both image paths and labels
|
173 |
|
174 |
with gr.Blocks() as demo:
|
175 |
gr.Markdown("# <center>Prompt de Resistance Image Generator</center>")
|
176 |
-
gr.
|
177 |
-
|
|
|
178 |
challenge_display = gr.Textbox(label="Challenge", value=get_challenge())
|
179 |
challenge_display.disabled = True
|
180 |
regenerate_btn = gr.Button("New Challenge")
|
181 |
-
pw = gr.Textbox(label="Password", type="password",
|
182 |
-
|
183 |
-
|
184 |
-
placeholder="Enter your text and then click on the \"Image Generate\" button")
|
185 |
model = gr.Dropdown(choices=["dall-e-2", "dall-e-3"], label="Model", value="dall-e-3")
|
186 |
show_labels = gr.Checkbox(label="Show Image Labels", value=False)
|
187 |
btn = gr.Button("Generate Images")
|
188 |
-
output_images = gr.Gallery(label="Image Outputs", show_label=True, columns=[3], rows=[1], object_fit="contain",
|
189 |
-
height="auto", allow_preview=False)
|
190 |
#trigger generation either through hitting enter in the text field, or clicking the button.
|
191 |
text.submit(fn=generate_images_wrapper, inputs=[text, pw, model, show_labels], outputs=output_images, api_name="generate_image") # Generate an api endpoint in Gradio / HF
|
192 |
btn.click(fn=generate_images_wrapper, inputs=[text, pw, model, show_labels], outputs=output_images, api_name=False)
|
|
|
122 |
prompts_list = [prompt for prompt in prompts.split(';') if prompt]
|
123 |
|
124 |
for i, entry in enumerate(prompts_list):
|
|
|
125 |
entry_parts = entry.split('-', 1) # Split by the first dash found
|
126 |
if len(entry_parts) == 2:
|
127 |
#raise gr.Error("Invalid prompt format. Please ensure it is in 'initials-prompt' format.")
|
|
|
164 |
image_paths.append(image_url)
|
165 |
image_labels.append(image_label)
|
166 |
|
167 |
+
except Exception as e:
|
168 |
+
print(e)
|
169 |
raise gr.Error(f"An error occurred while generating the image for: {entry}")
|
170 |
|
171 |
return image_paths, image_labels # Return both image paths and labels
|
172 |
|
173 |
with gr.Blocks() as demo:
|
174 |
gr.Markdown("# <center>Prompt de Resistance Image Generator</center>")
|
175 |
+
with gr.Accordion("Instructions & Tips",label="Instructions & Tips",open=True):
|
176 |
+
gr.Markdown("**Instructions**: To use this service, please enter the password. Then generate an image from the prompt field below in response to the challenge, then click the download arrow from the top right of the image to save it.")
|
177 |
+
gr.Markdown("**Tips**: Use adjectives (size,color,mood), specify the visual style (realistic,cartoon,8-bit), explain the point of view (from above,first person,wide angle) ")
|
178 |
challenge_display = gr.Textbox(label="Challenge", value=get_challenge())
|
179 |
challenge_display.disabled = True
|
180 |
regenerate_btn = gr.Button("New Challenge")
|
181 |
+
pw = gr.Textbox(label="Password", type="password", placeholder="Enter the password to unlock the service")
|
182 |
+
with gr.Accordion("Prompts",label="Prompts",open=True):
|
183 |
+
text = gr.Textbox(label="What do you want to create?", placeholder="Enter your text and then click on the \"Image Generate\" button")
|
|
|
184 |
model = gr.Dropdown(choices=["dall-e-2", "dall-e-3"], label="Model", value="dall-e-3")
|
185 |
show_labels = gr.Checkbox(label="Show Image Labels", value=False)
|
186 |
btn = gr.Button("Generate Images")
|
187 |
+
output_images = gr.Gallery(label="Image Outputs", show_label=True, columns=[3], rows=[1], object_fit="contain", height="auto", allow_preview=False)
|
|
|
188 |
#trigger generation either through hitting enter in the text field, or clicking the button.
|
189 |
text.submit(fn=generate_images_wrapper, inputs=[text, pw, model, show_labels], outputs=output_images, api_name="generate_image") # Generate an api endpoint in Gradio / HF
|
190 |
btn.click(fn=generate_images_wrapper, inputs=[text, pw, model, show_labels], outputs=output_images, api_name=False)
|