Spaces:
Running
Running
Commit ·
e707387
1
Parent(s): ae28caf
Fix runtime error: remove unsupported run_on_load from gr.Examples
Browse files
app.py
CHANGED
|
@@ -243,7 +243,6 @@ with gr.Blocks(title="Farm Drip Irrigation Designer") as demo:
|
|
| 243 |
inputs=[geofence_input, crop_dropdown, headland_slider, spacing_slider],
|
| 244 |
fn=generate_design,
|
| 245 |
outputs=[design_image, bom_json, summary_text, status_text],
|
| 246 |
-
run_on_load=False,
|
| 247 |
cache_examples=False,
|
| 248 |
)
|
| 249 |
|
|
|
|
| 243 |
inputs=[geofence_input, crop_dropdown, headland_slider, spacing_slider],
|
| 244 |
fn=generate_design,
|
| 245 |
outputs=[design_image, bom_json, summary_text, status_text],
|
|
|
|
| 246 |
cache_examples=False,
|
| 247 |
)
|
| 248 |
|