Joshleeave commited on
Commit
f433912
1 Parent(s): b8f0747

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -26,14 +26,16 @@ theme = gr.themes.Soft(radius_size=gr.themes.sizes.radius_none).set(body_backgro
26
 
27
  demo = gr.Interface(genImage,
28
  title="Bing Image Creator",
29
- description="AI disney poster creator by https://www.bingimagecreator.net",
30
  inputs=[
31
  gr.Textbox(lines=1, placeholder="Name your character",label="character name"),
32
  gr.Textbox(lines=4, placeholder="Describe your character",label="description of your character")
33
  ], outputs=["image"], examples=[
34
  ["Mickey Mouse", "An anthropomorphic mouse who typically wears red shorts, large yellow shoes, and white gloves, Mickey is one of the world's most recognizable fictional characters."],
35
  ["Donald Duck", "An anthropomorphic white duck with a yellow-orange bill, legs, and feet. He typically wears a sailor shirt and cap with a bow tie."],
36
- ["Goofy", "A tall, anthropomorphic dog who typically wears a turtle neck and vest, with pants, shoes, white gloves, and a tall hat originally designed as a rumpled fedora."]
 
 
37
  ], theme=theme).queue(concurrency_count=100, api_open=False).launch(show_api=False, show_error=False)
38
 
39
 
 
26
 
27
  demo = gr.Interface(genImage,
28
  title="Bing Image Creator",
29
+ description="AI disney poster creator by https://www.bingimagecreator.cc",
30
  inputs=[
31
  gr.Textbox(lines=1, placeholder="Name your character",label="character name"),
32
  gr.Textbox(lines=4, placeholder="Describe your character",label="description of your character")
33
  ], outputs=["image"], examples=[
34
  ["Mickey Mouse", "An anthropomorphic mouse who typically wears red shorts, large yellow shoes, and white gloves, Mickey is one of the world's most recognizable fictional characters."],
35
  ["Donald Duck", "An anthropomorphic white duck with a yellow-orange bill, legs, and feet. He typically wears a sailor shirt and cap with a bow tie."],
36
+ ["Milo", "A curious and adventurous young scientist who dreams of exploring the furthest reaches of the galaxy."]
37
+ ["Aria", "A skilled and fearless warrior princess, trained in the ancient ways of her people to defend her kingdom from dark forces."]
38
+ ["Kai", "A sturdy and resilient forest guardian, charged with protecting the ancient trees and their inhabitants from harm."]
39
  ], theme=theme).queue(concurrency_count=100, api_open=False).launch(show_api=False, show_error=False)
40
 
41