Update app.py
Browse files
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 |
-
#
|
117 |
-
file_path =
|
118 |
-
|
119 |
-
|
|
|
|
|
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,
|