KeenWoo commited on
Commit
46bfba2
·
verified ·
1 Parent(s): 045f4b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -984,7 +984,8 @@ with gr.Blocks(theme=gr.themes.Soft(), css=CSS) as demo:
984
  vs_general=ensure_index("All"),
985
  vs_personal=personal_vectorstore, # <-- This is correctly passed in
986
  nlu_vectorstore=nlu_vectorstore,
987
- config=CONFIG
 
988
  ),
989
  outputs=[batch_summary_md, comprehensive_results_df, comprehensive_results_df]
990
  )
 
984
  vs_general=ensure_index("All"),
985
  vs_personal=personal_vectorstore, # <-- This is correctly passed in
986
  nlu_vectorstore=nlu_vectorstore,
987
+ config=CONFIG,
988
+ storage_path=STORAGE_ROOT # <-- ADD THIS ARGUMENT
989
  ),
990
  outputs=[batch_summary_md, comprehensive_results_df, comprehensive_results_df]
991
  )