Almaatla commited on
Commit
90e94e1
·
verified ·
1 Parent(s): bee75ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -6
app.py CHANGED
@@ -97,6 +97,22 @@ def upload_documents(file: UploadFile = File(...)):
97
  # Get the list of documents from the JSON data
98
  new_documents = data["texts"]
99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  # Encode the new documents and add them to the FAISS database
101
  new_embeddings = model.encode(new_documents)
102
  index.add(np.array(new_embeddings))
@@ -141,13 +157,14 @@ def download_database_0():
141
  @app.post("/admin/database/upload")
142
  def upload_database(file: UploadFile = File(...)):
143
  # Read the contents of the uploaded file
144
- contents = json.load(file.file)
145
 
146
  # Load the FAISS index from the file contents
147
- index = faiss.read_index_binary(contents["index"])
 
148
 
149
- # Load the documents list from the file contents
150
- documents.clear()
151
- documents.extend(contents["documents"])
152
 
153
- return {"message": "Database uploaded", "documents": documents}
 
97
  # Get the list of documents from the JSON data
98
  new_documents = data["texts"]
99
 
100
+ # Add the new documents to the documents list
101
+ documents.extend(new_documents)
102
+
103
+ return {"message": f"{len(new_documents)} new documents uploaded"}
104
+
105
+ @app.post("/admin/documents/embed")
106
+ def embed_documents(file: UploadFile = File(...)):
107
+ # Read the contents of the uploaded file
108
+ contents = file.file.read()
109
+
110
+ # Load the JSON data from the file contents
111
+ data = json.loads(contents)
112
+
113
+ # Get the list of documents from the JSON data
114
+ new_documents = data["texts"]
115
+
116
  # Encode the new documents and add them to the FAISS database
117
  new_embeddings = model.encode(new_documents)
118
  index.add(np.array(new_embeddings))
 
157
  @app.post("/admin/database/upload")
158
  def upload_database(file: UploadFile = File(...)):
159
  # Read the contents of the uploaded file
160
+ contents = file.file.read()
161
 
162
  # Load the FAISS index from the file contents
163
+ global index
164
+ index = faiss.read_index_binary(contents)
165
 
166
+ # Clear the existing documents list and add the new documents
167
+ #global documents
168
+ #documents = index.reconstruct_n(0, index.ntotal).tolist()
169
 
170
+ return {"message": f"Database uploaded with {len(documents)} documents"}