Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ with gr.Blocks(title="📚 귀여운 스토리 앱") as demo:
|
|
156 |
state_text_short = gr.State(value=init_text_short)
|
157 |
|
158 |
story_text_short = gr.HTML(value=f"<div class='story-text'>{init_text_short}</div>")
|
159 |
-
story_image_short = gr.Image(value=init_image_short,
|
160 |
audio_output_short = gr.Audio(value=init_audio_short, autoplay=False)
|
161 |
|
162 |
with gr.Row():
|
@@ -180,7 +180,7 @@ with gr.Blocks(title="📚 귀여운 스토리 앱") as demo:
|
|
180 |
state_text_long = gr.State(value=init_text_long)
|
181 |
|
182 |
story_text_long = gr.HTML(value=f"<div class='story-text'>{init_text_long}</div>")
|
183 |
-
story_image_long = gr.Image(value=init_image_short,
|
184 |
audio_output_long = gr.Audio(value=init_audio_long, autoplay=False)
|
185 |
|
186 |
with gr.Row():
|
|
|
156 |
state_text_short = gr.State(value=init_text_short)
|
157 |
|
158 |
story_text_short = gr.HTML(value=f"<div class='story-text'>{init_text_short}</div>")
|
159 |
+
story_image_short = gr.Image(value=init_image_short, width=100, height=100)
|
160 |
audio_output_short = gr.Audio(value=init_audio_short, autoplay=False)
|
161 |
|
162 |
with gr.Row():
|
|
|
180 |
state_text_long = gr.State(value=init_text_long)
|
181 |
|
182 |
story_text_long = gr.HTML(value=f"<div class='story-text'>{init_text_long}</div>")
|
183 |
+
story_image_long = gr.Image(value=init_image_short, width=100, height=100)
|
184 |
audio_output_long = gr.Audio(value=init_audio_long, autoplay=False)
|
185 |
|
186 |
with gr.Row():
|