fffiloni commited on
Commit
a41ccb6
·
1 Parent(s): ab1afd9

Added more examples

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -32,5 +32,7 @@ def infer(prompt):
32
 
33
  prompt_input = gr.Textbox(lines=4, label="Input v1.x Stable Diffusion prompt")
34
  prompt_output = gr.Textbox(lines=4, label="Converted v2.x Stable Diffusion prompt")
35
- examples=["girl with steampunk weapons and uniform, serious, finely detailed, made by wlop, boichi, ilya kuvshinov, full body portrait, illustration, grass, sunny, sky, anime, side view, perfect anime face, detailed face, zoomed out, smooth, "]
 
 
36
  gr.Interface(fn=infer, inputs=[prompt_input], outputs=[prompt_output],title=title,description=description,examples=examples).queue(max_size=10).launch(enable_queue=True)
 
32
 
33
  prompt_input = gr.Textbox(lines=4, label="Input v1.x Stable Diffusion prompt")
34
  prompt_output = gr.Textbox(lines=4, label="Converted v2.x Stable Diffusion prompt")
35
+ examples=["girl with steampunk weapons and uniform, serious, finely detailed, made by wlop, boichi, ilya kuvshinov, full body portrait, illustration, grass, sunny, sky, anime, side view, perfect anime face, detailed face, zoomed out, smooth, ",
36
+ "a yellow cockatiel riding on the rings of saturn wearing a propeller hat, fantasy, intricate, elegant, highly detailed, digital painting, artstation, concept art, smooth, sharp focus, illustration, art by artgerm and greg rutkowski and alphonse mucha ",
37
+ "painting, view from inside edward hopper's painting nighthawks, of a group of werebears robbing a bank, foggy "]
38
  gr.Interface(fn=infer, inputs=[prompt_input], outputs=[prompt_output],title=title,description=description,examples=examples).queue(max_size=10).launch(enable_queue=True)