ranamhamoud commited on
Commit
5845573
·
verified ·
1 Parent(s): ae2217e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -15,18 +15,17 @@ openai_key = os.environ.get("OPENAI_KEY")
15
 
16
  def generate_image(text):
17
  try:
18
- client = OpenAI(api_key=openai_key)
19
-
20
- response = client.images.generate(
21
  model="dall-e-3",
22
- prompt="Create an illustration that accurately depicts the character and the setting of this story:"+text,
23
  n=1,
24
  size="1024x1024"
25
  )
26
  except Exception as error:
27
  print(str(error))
28
- raise gr.Error("An error occurred while generating speech. Please check your API key and come back try again.")
29
 
 
30
  return response.data[0].url
31
 
32
 
 
15
 
16
  def generate_image(text):
17
  try:
18
+ response = openai.images.generate(
 
 
19
  model="dall-e-3",
20
+ prompt="Create an illustration that accurately depicts the character and the setting of a story:"+text,
21
  n=1,
22
  size="1024x1024"
23
  )
24
  except Exception as error:
25
  print(str(error))
26
+ raise gr.Error("An error occurred while generating the image. Please check your API key and try again.")
27
 
28
+
29
  return response.data[0].url
30
 
31