Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 = []
|