anuarkenzh1bekov commited on
Commit
6daa82c
·
verified ·
1 Parent(s): c601a85

Upload 21 files

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -197,4 +197,6 @@ if __name__ == "__main__":
197
  print("-"*(60 + len(" App Starting ")) + "\n")
198
 
199
  print("Launching Gradio Interface for Basic Agent Evaluation...")
200
- demo.launch(debug=True, share=False)
 
 
 
197
  print("-"*(60 + len(" App Starting ")) + "\n")
198
 
199
  print("Launching Gradio Interface for Basic Agent Evaluation...")
200
+ # ssr_mode=False disables Gradio 5's experimental SSR, which logs noisy
201
+ # "SvelteKitError: POST method not allowed" / Content-Length warnings on HF.
202
+ demo.launch(debug=True, share=False, ssr_mode=False)