Spaces:
Runtime error
Runtime error
Commit
·
e85d1cd
1
Parent(s):
e7b06d7
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,6 @@ def generate_image(prompt):
|
|
10 |
else:
|
11 |
return None
|
12 |
|
13 |
-
prompt_input = gr.Textbox(
|
14 |
|
15 |
gr.Interface(generate_image, inputs=gr.Textbox(lines=5), outputs=gr.Image(label="Generated Image")).launch()
|
|
|
10 |
else:
|
11 |
return None
|
12 |
|
13 |
+
prompt_input = gr.Textbox(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()
|