Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ with gr.Blocks(fill_height=True) as demo:
|
|
82 |
gr.Markdown("# Qwen Storyteller \n## Upload up to 10 images to generate a creative story.")
|
83 |
|
84 |
with gr.Row():
|
85 |
-
with gr.Column():
|
86 |
upload_button = gr.UploadButton("Upload up to 10 images", file_types=["image"], file_count="multiple")
|
87 |
output_file = gr.File(label="Uploaded Files")
|
88 |
gen_button = gr.Button("Generate", variant="primary")
|
@@ -102,7 +102,7 @@ with gr.Blocks(fill_height=True) as demo:
|
|
102 |
```
|
103 |
"""
|
104 |
)
|
105 |
-
with gr.Column():
|
106 |
outputs = gr.Markdown(label="Generated Story", show_copy_button=True)
|
107 |
|
108 |
with gr.Row():
|
|
|
82 |
gr.Markdown("# Qwen Storyteller \n## Upload up to 10 images to generate a creative story.")
|
83 |
|
84 |
with gr.Row():
|
85 |
+
with gr.Column(scale=1):
|
86 |
upload_button = gr.UploadButton("Upload up to 10 images", file_types=["image"], file_count="multiple")
|
87 |
output_file = gr.File(label="Uploaded Files")
|
88 |
gen_button = gr.Button("Generate", variant="primary")
|
|
|
102 |
```
|
103 |
"""
|
104 |
)
|
105 |
+
with gr.Column(scale=2):
|
106 |
outputs = gr.Markdown(label="Generated Story", show_copy_button=True)
|
107 |
|
108 |
with gr.Row():
|