ginipick commited on
Commit
164a5a3
ยท
verified ยท
1 Parent(s): 5aebe89

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -843,9 +843,10 @@ footer {
843
 
844
  def create_demo():
845
  with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
 
846
  with gr.Row():
847
  with gr.Column():
848
- prompt = gr.Textbox(label="Prompt(ํ•œ๊ธ€ ๊ฐ€๋Šฅ)", value="A cute and fluffy golden retriever puppy sitting upright, holding a neatly designed white sign with bold, colorful lettering that reads 'Have a Happy Day!' in cheerful fonts. The puppy has expressive, sparkling eyes, a happy smile, and fluffy ears slightly flopped. The background is a vibrant and sunny meadow with soft-focus flowers, glowing sunlight filtering through the trees, and a warm golden glow that enhances the joyful atmosphere. The sign is framed with small decorative flowers, adding a charming and wholesome touch. Ensure the text on the sign is clear and legible.")
849
 
850
  width = gr.Slider(minimum=128, maximum=2048, step=64, label="Width", value=768)
851
  height = gr.Slider(minimum=128, maximum=2048, step=64, label="Height", value=768)
@@ -873,8 +874,8 @@ def create_demo():
873
  gr.Examples(
874
  examples=[
875
  "a tiny astronaut hatching from an egg on the moon",
876
- "a cat holding a sign that says hello world",
877
- "an anime illustration of a wiener schnitzel",
878
  ],
879
  inputs=prompt, # ์˜ˆ์ œ๊ฐ€ ์ž…๋ ฅ๋  ์ปดํฌ๋„ŒํŠธ ์ง€์ •
880
  )
 
843
 
844
  def create_demo():
845
  with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
846
+ gr.Markdown("# FLUXllama Multilingual")
847
  with gr.Row():
848
  with gr.Column():
849
+ prompt = gr.Textbox(label="Prompt(Supports English, Korean, and Japanese)", value="A cute and fluffy golden retriever puppy sitting upright, holding a neatly designed white sign with bold, colorful lettering that reads 'Have a Happy Day!' in cheerful fonts. The puppy has expressive, sparkling eyes, a happy smile, and fluffy ears slightly flopped. The background is a vibrant and sunny meadow with soft-focus flowers, glowing sunlight filtering through the trees, and a warm golden glow that enhances the joyful atmosphere. The sign is framed with small decorative flowers, adding a charming and wholesome touch. Ensure the text on the sign is clear and legible.")
850
 
851
  width = gr.Slider(minimum=128, maximum=2048, step=64, label="Width", value=768)
852
  height = gr.Slider(minimum=128, maximum=2048, step=64, label="Height", value=768)
 
874
  gr.Examples(
875
  examples=[
876
  "a tiny astronaut hatching from an egg on the moon",
877
+ "์ฌ๊ธ€๋ผ์Šค ์ฐฉ์šฉํ•œ ๊ท€์—ฌ์šด ํฐ์ƒ‰ ๊ณ ์–‘์ด๊ฐ€ 'LOVE'๋ผ๋Š” ํ‘œ์ง€ํŒ์„ ๋“ค๊ณ ์žˆ๋‹ค",
878
+ "ๆกœใŒๆตใ‚Œใ‚‹ๅคœใฎ่ก—ใ€็…งๆ˜Ž",
879
  ],
880
  inputs=prompt, # ์˜ˆ์ œ๊ฐ€ ์ž…๋ ฅ๋  ์ปดํฌ๋„ŒํŠธ ์ง€์ •
881
  )