NanobotzAI commited on
Commit
c3e3d46
·
verified ·
1 Parent(s): b15d87a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -82,7 +82,7 @@ def index():
82
  """Serve the HTML page for the user interface"""
83
  return render_template('index.html')
84
 
85
- UPLOAD_FOLDER = "uploaded_files"
86
  os.makedirs(UPLOAD_FOLDER, exist_ok=True) # Ensure the folder exists
87
 
88
  @app.route('/upload_pdf', methods=['POST'])
 
82
  """Serve the HTML page for the user interface"""
83
  return render_template('index.html')
84
 
85
+ UPLOAD_FOLDER = "/tmp/uploaded_files"
86
  os.makedirs(UPLOAD_FOLDER, exist_ok=True) # Ensure the folder exists
87
 
88
  @app.route('/upload_pdf', methods=['POST'])