ssboost commited on
Commit
33fb833
·
verified ·
1 Parent(s): c648132

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -12,6 +12,10 @@ import shutil
12
 
13
  app = FastAPI()
14
 
 
 
 
 
15
  def extract_keywords(product_names):
16
  unique_products = list(set(product_names)) # 중복 제거된 상품명 리스트
17
  all_unique_words = []
 
12
 
13
  app = FastAPI()
14
 
15
+ @app.get("/health")
16
+ async def health_check():
17
+ return {"status": "healthy"}
18
+
19
  def extract_keywords(product_names):
20
  unique_products = list(set(product_names)) # 중복 제거된 상품명 리스트
21
  all_unique_words = []