Kvikontent commited on
Commit
e7b06d7
·
1 Parent(s): 506e749

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,6 +10,6 @@ def generate_image(prompt):
10
  else:
11
  return None
12
 
13
- prompt_input = gr.textbox(input_type="area", label="Enter your prompt here:", default="Visualize a scene of a burning bonfire with the word '2023' clearly visible amidst the flames. Underneath the burning text, there is another, undamaged text that reads '2024'. The image should convey a sense of transition and change, with the old year being consumed by the fire and the new year emerging triumphant.")
14
 
15
- gr.Interface(generate_image, inputs=gr.inputs.Textbox(lines=5), outputs=gr.outputs.Image(label="Generated Image")).launch()
 
10
  else:
11
  return None
12
 
13
+ prompt_input = gr.Textbox(input_type="area", label="Enter your prompt here:", default="Visualize a scene of a burning bonfire with the word '2023' clearly visible amidst the flames. Underneath the burning text, there is another, undamaged text that reads '2024'. The image should convey a sense of transition and change, with the old year being consumed by the fire and the new year emerging triumphant.")
14
 
15
+ gr.Interface(generate_image, inputs=gr.Textbox(lines=5), outputs=gr.Image(label="Generated Image")).launch()