GuglielmoTor commited on
Commit
3c8e890
·
verified ·
1 Parent(s): 945226d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -315,10 +315,10 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="sky"),
315
  outputs=agentic_display_outputs,
316
  show_progress="minimal"
317
  ).then( # NEW CHAIN: Update the enhanced OKR display after load_and_display_agentic_results runs
318
- fn=format_okrs_for_enhanced_display,
319
- inputs=[actionable_okrs_data_st], # Take the new explicit actionable_okrs_data_st as input
320
- outputs=[enhanced_okr_display_html],
321
- show_progress="minimal"
322
  )
323
 
324
 
 
315
  outputs=agentic_display_outputs,
316
  show_progress="minimal"
317
  ).then( # NEW CHAIN: Update the enhanced OKR display after load_and_display_agentic_results runs
318
+ fn=format_okrs_for_enhanced_display,
319
+ inputs=[reconstruction_cache_st], # Change from actionable_okrs_data_st to reconstruction_cache_st
320
+ outputs=[enhanced_okr_display_html],
321
+ show_progress="minimal"
322
  )
323
 
324