Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -494,8 +494,7 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
|
|
| 494 |
model_radio = gr.Radio(
|
| 495 |
choices=["Nano Banana", "Nano Banana PRO"],
|
| 496 |
value="Nano Banana PRO",
|
| 497 |
-
label="Model
|
| 498 |
-
info="PRO: Higher quality, slower generation (50 credits/day) | Standard: Faster generation (75/day)"
|
| 499 |
)
|
| 500 |
|
| 501 |
with gr.Row():
|
|
@@ -507,14 +506,12 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
|
|
| 507 |
)
|
| 508 |
|
| 509 |
resolution_dropdown = gr.Dropdown(
|
| 510 |
-
label="Resolution
|
| 511 |
choices=["1K", "2K", "4K"],
|
| 512 |
value="1K",
|
| 513 |
interactive=True,
|
| 514 |
visible=True
|
| 515 |
)
|
| 516 |
-
|
| 517 |
-
gr.Markdown("💡 **Credit costs:** 1K = 1 credit, 2K = 2 credits, 4K = 4 credits")
|
| 518 |
|
| 519 |
generate_button = gr.Button("Generate", variant="primary")
|
| 520 |
with gr.Column(scale=1):
|
|
|
|
| 494 |
model_radio = gr.Radio(
|
| 495 |
choices=["Nano Banana", "Nano Banana PRO"],
|
| 496 |
value="Nano Banana PRO",
|
| 497 |
+
label="Model",
|
|
|
|
| 498 |
)
|
| 499 |
|
| 500 |
with gr.Row():
|
|
|
|
| 506 |
)
|
| 507 |
|
| 508 |
resolution_dropdown = gr.Dropdown(
|
| 509 |
+
label="Resolution",
|
| 510 |
choices=["1K", "2K", "4K"],
|
| 511 |
value="1K",
|
| 512 |
interactive=True,
|
| 513 |
visible=True
|
| 514 |
)
|
|
|
|
|
|
|
| 515 |
|
| 516 |
generate_button = gr.Button("Generate", variant="primary")
|
| 517 |
with gr.Column(scale=1):
|