Chris4K commited on
Commit
8ecfa32
·
verified ·
1 Parent(s): d2631fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -5
app.py CHANGED
@@ -108,13 +108,17 @@ def calculate_statistics(embeddings):
108
 
109
  import shutil
110
 
 
111
  def upload_file(file, model_name, split_strategy, chunk_size, overlap_size, max_tokens, query, top_k):
112
- # Ensure default values are set if None is passed
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))
@@ -131,6 +135,7 @@ def upload_file(file, model_name, split_strategy, chunk_size, overlap_size, max_
131
 
132
  return {"results": results, "stats": stats}
133
 
 
134
  # Gradio interface
135
  iface = gr.Interface(
136
  fn=upload_file,
 
108
 
109
  import shutil
110
 
111
+
112
  def upload_file(file, model_name, split_strategy, chunk_size, overlap_size, max_tokens, query, top_k):
113
+ # Ensure the correct type for chunk_size and overlap_size
114
+ try:
115
+ chunk_size = int(chunk_size) if chunk_size else 100
116
+ overlap_size = int(overlap_size) if overlap_size else 0
117
+ except ValueError:
118
+ return {"error": "Chunk size and overlap size must be valid integers."}
119
 
120
+ # Handle file upload using the Gradio file object
121
+ file_path = file.name # Get the file path from Gradio file object
122
 
123
  # Copy the uploaded file content to a local directory
124
  destination_path = os.path.join(FILES_DIR, os.path.basename(file_path))
 
135
 
136
  return {"results": results, "stats": stats}
137
 
138
+
139
  # Gradio interface
140
  iface = gr.Interface(
141
  fn=upload_file,