TheBobBob commited on
Commit
7c23b20
·
verified ·
1 Parent(s): 8a15d78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -152,15 +152,13 @@ def create_vector_db(final_items):
152
  filename="unsloth.BF16.gguf",
153
  )
154
 
155
- # Placeholder for final results to add to the database
156
  documents_to_add = []
157
  ids_to_add = []
158
 
159
  for item in final_items:
160
- # Generate the ID from the first 20 characters of the item
161
- item_id = f"id_{item[:45].replace(' ', '_')}" # Use first 20 characters, replace spaces for a valid ID
162
 
163
- # Check if the ID already exists in the database
164
  existing_documents = db.get(ids=[item_id])
165
 
166
  if not existing_documents: # If the ID does not exist
 
152
  filename="unsloth.BF16.gguf",
153
  )
154
 
 
155
  documents_to_add = []
156
  ids_to_add = []
157
 
158
  for item in final_items:
159
+ item2 = str(item)
160
+ item_id = f"id_{item2[:45].replace(' ', '_')}"
161
 
 
162
  existing_documents = db.get(ids=[item_id])
163
 
164
  if not existing_documents: # If the ID does not exist