gouravshah commited on
Commit
341e1cb
·
1 Parent(s): 29e265e

use tmp dir for writing

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -25,6 +25,8 @@ demo = gr.Interface(
25
  outputs="text",
26
  title="Tech Stack Advisor",
27
  description="Get a recommended tech stack based on your project and team!"
 
 
28
  )
29
 
30
  demo.launch(server_name="0.0.0.0", server_port=7860)
 
25
  outputs="text",
26
  title="Tech Stack Advisor",
27
  description="Get a recommended tech stack based on your project and team!"
28
+ flagging_dir="/tmp/flagged" # ✅ Set writable path
29
+ #allow_flagging="never" # ✅ Disable flagging
30
  )
31
 
32
  demo.launch(server_name="0.0.0.0", server_port=7860)