mroccuper commited on
Commit
46e0e37
·
verified ·
1 Parent(s): 5e240bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -290,7 +290,7 @@ def create_interface():
290
  gr.Markdown("# Amazon Merch on Demand Listing Generator")
291
  gr.Markdown("Generate SEO-optimized t-shirt and apparel listings for Amazon Merch on Demand using Gemini AI. Character limits are enforced.")
292
 
293
- with gr.Row():
294
  with gr.Column(scale=1):
295
  # API Key input is now mandatory here
296
  api_key_ui = gr.Textbox(
@@ -310,7 +310,7 @@ def create_interface():
310
  )
311
  submit_btn = gr.Button("Generate Amazon Listing", variant="primary")
312
 
313
- with gr.Column(scale=2).style(container=True):
314
  status = gr.Textbox(label="Status", value="Ready", interactive=False, lines=1)
315
  output = gr.Textbox(label="Generated Amazon Listing", lines=25, interactive=True) # Make output selectable
316
 
 
290
  gr.Markdown("# Amazon Merch on Demand Listing Generator")
291
  gr.Markdown("Generate SEO-optimized t-shirt and apparel listings for Amazon Merch on Demand using Gemini AI. Character limits are enforced.")
292
 
293
+ with gr.Row(equal=True):
294
  with gr.Column(scale=1):
295
  # API Key input is now mandatory here
296
  api_key_ui = gr.Textbox(
 
310
  )
311
  submit_btn = gr.Button("Generate Amazon Listing", variant="primary")
312
 
313
+ with gr.Column(scale=2):
314
  status = gr.Textbox(label="Status", value="Ready", interactive=False, lines=1)
315
  output = gr.Textbox(label="Generated Amazon Listing", lines=25, interactive=True) # Make output selectable
316