Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -41,4 +41,8 @@ def classify_image_with_text(text, image):
|
|
41 |
async def classify(prompt, image=None):
|
42 |
return {"predicted_label": classify_image_with_text(prompt,image)}
|
43 |
|
|
|
|
|
|
|
|
|
44 |
|
|
|
41 |
async def classify(prompt, image=None):
|
42 |
return {"predicted_label": classify_image_with_text(prompt,image)}
|
43 |
|
44 |
+
@app.get("/")
|
45 |
+
async def root():
|
46 |
+
return {"message": "Welcome to the Fashion Clip API!"}
|
47 |
+
|
48 |
|