heaversm commited on
Commit
3b1dbeb
·
1 Parent(s): 74a4765

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
Files changed (1) hide show
  1. app.py +51 -44
app.py CHANGED
@@ -44,49 +44,56 @@ try:
44
  except Exception as e:
45
  print(e)
46
 
47
- def generate_image(text, 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
- try:
54
- client = OpenAI(api_key=openai_key)
55
-
56
-
57
-
58
- response = client.images.generate(
59
- prompt=text,
60
- model=model, # dall-e-2 or dall-e-3
61
- quality="standard", # standard or hd
62
- size="512x512" if model == "dall-e-2" else "1024x1024", # varies for dalle-2 and dalle-3, see https://openai.com/pricing for resolutions
63
- n=1, # Number of images to generate
64
- )
65
- except Exception as error:
66
- print(str(error))
67
- raise gr.Error("An error occurred while generating the image.")
68
-
69
- image_url = response.data[0].url
70
-
71
- try:
72
- mongo_collection.insert_one({"text": text, "model": model, "image_url": image_url})
73
- except Exception as e:
74
- print(e)
75
- raise gr.Error("An error occurred while saving the prompt to the database.")
76
-
77
- # create a temporary file to store the image with extension
78
- image_response = requests.get(image_url)
79
- if image_response.status_code == 200:
80
- # Use a temporary file to automatically clean up after the file is closed
81
- temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.jpg')
82
- temp_file.write(image_response.content)
83
- temp_file.close()
84
- # return the file with extension for download
85
- return temp_file.name
86
- else:
87
- raise gr.Error("Failed to download the image.")
88
-
89
- #return image_url
 
 
 
 
 
 
 
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 Image")
103
- output_image = gr.Image(label="Image Output")
 
104
 
105
- text.submit(fn=generate_image, inputs=[text,pw,model], outputs=output_image, api_name="generate_image")
106
- btn.click(fn=generate_image, inputs=[text,pw,model], outputs=output_image, api_name=False)
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)