ciCic commited on
Commit
2300903
1 Parent(s): c6e8517
Files changed (1) hide show
  1. app.py +16 -10
app.py CHANGED
@@ -33,15 +33,16 @@ def inference(prompt, guidance_scale, num_inference_steps):
33
  return None
34
 
35
 
36
- example_prompts = [
37
- "Illustrate the concept of 'serendipity' in a single image.",
38
- "Create a visual representation of the phrase 'whispers of the autumn wind.'",
39
- "Design an image capturing the essence of 'timeless wonder' in a mystical forest setting.",
40
- "Visualize the emotions evoked by the words 'bittersweet symphony' in a unique artwork.",
41
- "Craft an image that conveys the juxtaposition of 'urban chaos and tranquil solitude' in a futuristic cityscape.",
42
- "Albert Einstein smoking, half body wide angle professional portrait photo, clear and detailed eyes, nature background at sunset, backlighting, fashion photography, centered, symmetrical, hasselblad helios 44-2 58mm F2, by Annie Leibovitz and Ellen von Unwerth"
43
- ]
44
-
 
45
 
46
 
47
  def app():
@@ -64,7 +65,12 @@ def app():
64
  width=512
65
  )
66
  , allow_flagging='never', title='Gen Image',
67
- examples=example_prompts
 
 
 
 
 
68
  )
69
 
70
 
 
33
  return None
34
 
35
 
36
+ # example_prompts = [
37
+ # "Illustrate the concept of 'serendipity' in a single image.",
38
+ # "Create a visual representation of the phrase 'whispers of the autumn wind.'",
39
+ # "Design an image capturing the essence of 'timeless wonder' in a mystical forest setting.",
40
+ # "Visualize the emotions evoked by the words 'bittersweet symphony' in a unique artwork.",
41
+ # "Craft an image that conveys the juxtaposition of 'urban chaos and tranquil solitude' in a futuristic cityscape.",
42
+ # "Albert Einstein smoking, half body wide angle professional portrait photo, clear and detailed eyes, "
43
+ # "nature background at sunset, backlighting, fashion photography, centered, symmetrical, hasselblad helios 44-2 "
44
+ # "58mm F2, by Annie Leibovitz and Ellen von Unwerth"
45
+ # ]
46
 
47
 
48
  def app():
 
65
  width=512
66
  )
67
  , allow_flagging='never', title='Gen Image',
68
+ examples=[
69
+ "Illustrate the concept of 'serendipity' in a single image.",
70
+ "Create a visual representation of the phrase 'whispers of the autumn wind.'",
71
+ "Design an image capturing the essence of 'timeless wonder' in a mystical forest setting.",
72
+ "Visualize the emotions evoked by the words 'bittersweet symphony' in a unique artwork.",
73
+ ]
74
  )
75
 
76