GuglielmoTor commited on
Commit
c67cf25
·
verified ·
1 Parent(s): 055c98e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
app.py CHANGED
@@ -239,9 +239,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="sky"),
239
  show_progress="full"
240
  ).then(
241
  fn=run_agentic_pipeline_autonomously, # Generator function
242
- inputs=[agentic_pipeline_inputs,
243
- orchestration_raw_results_st,
244
- selected_key_result_ids_st],
245
  outputs=agentic_pipeline_outputs_list,
246
  show_progress="minimal" # Use minimal for generators that yield status
247
  )
@@ -260,9 +258,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="sky"),
260
  )
261
  sync_event_part2.then(
262
  fn=run_agentic_pipeline_autonomously, # Generator function
263
- inputs=[agentic_pipeline_inputs,
264
- orchestration_raw_results_st,
265
- selected_key_result_ids_st],
266
  outputs=agentic_pipeline_outputs_list,
267
  show_progress="minimal"
268
  )
 
239
  show_progress="full"
240
  ).then(
241
  fn=run_agentic_pipeline_autonomously, # Generator function
242
+ inputs=[token_state, orchestration_raw_results_st, selected_key_result_ids_st, key_results_for_selection_st],
 
 
243
  outputs=agentic_pipeline_outputs_list,
244
  show_progress="minimal" # Use minimal for generators that yield status
245
  )
 
258
  )
259
  sync_event_part2.then(
260
  fn=run_agentic_pipeline_autonomously, # Generator function
261
+ inputs=[token_state, orchestration_raw_results_st, selected_key_result_ids_st, key_results_for_selection_st]
 
 
262
  outputs=agentic_pipeline_outputs_list,
263
  show_progress="minimal"
264
  )