Chris4K commited on
Commit
d2631fa
·
verified ·
1 Parent(s): 1449a38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -113,10 +113,12 @@ def upload_file(file, model_name, split_strategy, chunk_size, overlap_size, max_
113
  chunk_size = int(chunk_size) if chunk_size else 100
114
  overlap_size = int(overlap_size) if overlap_size else 0
115
 
116
- # Save uploaded file
117
- file_path = os.path.join(FILES_DIR, file.name)
118
- with open(file_path, "wb") as f:
119
- shutil.copyfileobj(file, f) # Copy the uploaded file content to the destination
 
 
120
 
121
  # Process files and get embeddings
122
  embeddings, chunks = process_files(model_name, split_strategy, chunk_size, overlap_size, max_tokens)
@@ -129,7 +131,6 @@ def upload_file(file, model_name, split_strategy, chunk_size, overlap_size, max_
129
 
130
  return {"results": results, "stats": stats}
131
 
132
-
133
  # Gradio interface
134
  iface = gr.Interface(
135
  fn=upload_file,
 
113
  chunk_size = int(chunk_size) if chunk_size else 100
114
  overlap_size = int(overlap_size) if overlap_size else 0
115
 
116
+ # `file` in Gradio is a dict-like object with a 'name' key containing the file path
117
+ file_path = file.name # Get the file path from the Gradio `file` object
118
+
119
+ # Copy the uploaded file content to a local directory
120
+ destination_path = os.path.join(FILES_DIR, os.path.basename(file_path))
121
+ shutil.copyfile(file_path, destination_path) # Use shutil to copy the file
122
 
123
  # Process files and get embeddings
124
  embeddings, chunks = process_files(model_name, split_strategy, chunk_size, overlap_size, max_tokens)
 
131
 
132
  return {"results": results, "stats": stats}
133
 
 
134
  # Gradio interface
135
  iface = gr.Interface(
136
  fn=upload_file,