KingNish commited on
Commit
9dfd02f
1 Parent(s): 8952eae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -92,7 +92,8 @@ style_list = [
92
 
93
  styles = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in style_list}
94
  STYLE_NAMES = list(styles.keys())
95
- DEFAULT_STYLE_NAME = "Realistic"
 
96
  SCHEDULE_NAME = ["DPM-Solver"]
97
  DEFAULT_SCHEDULE_NAME = "DPM-Solver"
98
  NUM_IMAGES_PER_PROMPT = 1
@@ -210,6 +211,16 @@ def generate(
210
 
211
  examples = [
212
  "A Monkey with a happy face in the Sahara desert.",
 
 
 
 
 
 
 
 
 
 
213
  ]
214
 
215
  with gr.Blocks(css="style.css") as demo:
 
92
 
93
  styles = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in style_list}
94
  STYLE_NAMES = list(styles.keys())
95
+ DEFAULT_STYLE_NAME = "(No style)
96
+ "
97
  SCHEDULE_NAME = ["DPM-Solver"]
98
  DEFAULT_SCHEDULE_NAME = "DPM-Solver"
99
  NUM_IMAGES_PER_PROMPT = 1
 
211
 
212
  examples = [
213
  "A Monkey with a happy face in the Sahara desert.",
214
+ "Eiffel Tower was Made up of ICE to look like a cloud, with the bell tower at the top of the building.",
215
+ "3D small, round, fluffy creature with big, expressive eyes explores a vibrant, enchanted forest. The creature, a whimsical blend of a rabbit and a squirrel, has soft blue fur and a bushy, striped tail. It hops along a sparkling stream, its eyes wide with wonder. The forest is alive with magical elements: flowers that glow and change colors, trees with leaves in shades of purple and silver, and small floating lights that resemble fireflies. The creature stops to interact playfully with a group of tiny, fairy-like beings dancing around a mushroom ring. The creature looks up in awe at a large, glowing tree that seems to be the heart of the forest.",
216
+ "Color photo of a corgi made of transparent glass, standing on the riverside in Yosemite National Park.",
217
+ "A close-up photo of a woman. She wore a blue coat with a gray dress underneath. She has blue eyes and blond hair, and wears a pair of earrings. Behind are blurred city buildings and streets.",
218
+ "A litter of golden retriever puppies playing in the snow. Their heads pop out of the snow, covered in.",
219
+ "a handsome young boy in the middle with sky color background wearing eye glasses, it's super detailed with anime style, it's a portrait with delicated eyes and nice looking face",
220
+ "an astronaut sitting in a diner, eating fries, cinematic, analog film",
221
+ "Pirate ship trapped in a cosmic maelstrom nebula, rendered in cosmic beach whirlpool engine, volumetric lighting, spectacular, ambient lights, intricate detail.",
222
+ "professional portrait photo of an anthropomorphic cat wearing fancy gentleman hat and jacket walking in autumn forest.",
223
+ "Outside View from Hotel Made up of Chocolate in space.",
224
  ]
225
 
226
  with gr.Blocks(css="style.css") as demo: