waseoke commited on
Commit
01a3bea
·
verified ·
1 Parent(s): ab1f9e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,7 +67,7 @@ if product_data:
67
  print("Product Embedding:", product_embedding)
68
 
69
  # MongoDB Atlas의 product_embeddings 컬렉션에 임베딩 저장
70
- embedding_collection.update_one(
71
  {"product_id": product_data["product_id"]}, # product_id 기준으로 찾기
72
  {"$set": {"embedding": product_embedding.tolist()}}, # 벡터를 리스트 형태로 저장
73
  upsert=True # 기존 항목이 없으면 새로 삽입
@@ -82,7 +82,7 @@ if user_data:
82
  print("User Embedding:", user_embedding)
83
 
84
  # MongoDB Atlas의 user_embeddings 컬렉션에 임베딩 저장
85
- embedding_collection.update_one(
86
  {"user_id": user_data["user_id"]}, # user_id 기준으로 찾기
87
  {"$set": {"embedding": user_embedding.tolist()}}, # 벡터를 리스트 형태로 저장
88
  upsert=True # 기존 항목이 없으면 새로 삽입
 
67
  print("Product Embedding:", product_embedding)
68
 
69
  # MongoDB Atlas의 product_embeddings 컬렉션에 임베딩 저장
70
+ product_embedding_collection.update_one(
71
  {"product_id": product_data["product_id"]}, # product_id 기준으로 찾기
72
  {"$set": {"embedding": product_embedding.tolist()}}, # 벡터를 리스트 형태로 저장
73
  upsert=True # 기존 항목이 없으면 새로 삽입
 
82
  print("User Embedding:", user_embedding)
83
 
84
  # MongoDB Atlas의 user_embeddings 컬렉션에 임베딩 저장
85
+ user_embedding_collection.update_one(
86
  {"user_id": user_data["user_id"]}, # user_id 기준으로 찾기
87
  {"$set": {"embedding": user_embedding.tolist()}}, # 벡터를 리스트 형태로 저장
88
  upsert=True # 기존 항목이 없으면 새로 삽입