Update app.py
Browse files
app.py
CHANGED
|
@@ -375,7 +375,7 @@ with gr.Blocks(css=custom_css) as app:
|
|
| 375 |
|
| 376 |
with gr.Row():
|
| 377 |
with gr.Column(scale=1):
|
| 378 |
-
with gr.
|
| 379 |
gr.HTML("<h3>🔑 API Configuration</h3>")
|
| 380 |
api_key_input = gr.Textbox(
|
| 381 |
label="Together API Key",
|
|
@@ -434,7 +434,7 @@ with gr.Blocks(css=custom_css) as app:
|
|
| 434 |
submit_button = gr.Button("Get Recipe Suggestions", elem_classes="primary-button")
|
| 435 |
|
| 436 |
with gr.Column(scale=1):
|
| 437 |
-
with gr.
|
| 438 |
gr.HTML("<h3>🍽️ Your Personalized Recipes</h3>")
|
| 439 |
output = gr.Markdown(elem_classes="recipe-output")
|
| 440 |
|
|
|
|
| 375 |
|
| 376 |
with gr.Row():
|
| 377 |
with gr.Column(scale=1):
|
| 378 |
+
with gr.Group(elem_classes="input-section"):
|
| 379 |
gr.HTML("<h3>🔑 API Configuration</h3>")
|
| 380 |
api_key_input = gr.Textbox(
|
| 381 |
label="Together API Key",
|
|
|
|
| 434 |
submit_button = gr.Button("Get Recipe Suggestions", elem_classes="primary-button")
|
| 435 |
|
| 436 |
with gr.Column(scale=1):
|
| 437 |
+
with gr.Group(elem_classes="output-section"):
|
| 438 |
gr.HTML("<h3>🍽️ Your Personalized Recipes</h3>")
|
| 439 |
output = gr.Markdown(elem_classes="recipe-output")
|
| 440 |
|