aminaj commited on
Commit
5fdbc00
·
verified ·
1 Parent(s): 683d121

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +20 -5
main.py CHANGED
@@ -98,12 +98,27 @@ async def set_api_key(api_key: APIKey):
98
  ## POST - /upload_file_on_server
99
  @app.post("/upload_file_on_server")
100
  async def upload_file_on_server(file: UploadFile = File(...)):
101
- # Save the uploaded file to a temporary location
102
- with open(file.filename, "wb") as buffer:
103
- shutil.copyfileobj(file.file, buffer)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
 
105
- # Return a response
106
- return {"filename": file.filename, "message": "File uploaded successfully"}
107
 
108
  ## POST - /load_file
109
  # Load the file, split it into document chunks, and upload the document embeddings into a vectorstore
 
98
  ## POST - /upload_file_on_server
99
  @app.post("/upload_file_on_server")
100
  async def upload_file_on_server(file: UploadFile = File(...)):
101
+ file_content = file.read() # Load the document
102
+
103
+ # Create a directory if it doesn't exist
104
+ data_dir = "/data"
105
+ # os.makedirs(data_dir, exist_ok=True)
106
+
107
+ # Create a temporary file in the data directory
108
+ with tempfile.NamedTemporaryFile(delete=False, dir=data_dir) as temp_file:
109
+ temp_file.write(file_content) # Write the uploaded file content to the temporary file
110
+ temp_file_path = temp_file.name # Get the path of the temporary file
111
+ return temp_file_path
112
+ # # Save the uploaded file to the temporary directory
113
+ # file_path = os.path.join(temp_dir, file.filename)
114
+
115
+ # # Save the uploaded file to a temporary location
116
+ # with open(file.filename, "wb") as buffer:
117
+ # shutil.copyfileobj(file.file, buffer)
118
+
119
+ # # Return a response
120
+ # return {"filename": file.filename, "message": "File uploaded successfully"}
121
 
 
 
122
 
123
  ## POST - /load_file
124
  # Load the file, split it into document chunks, and upload the document embeddings into a vectorstore