Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -296,9 +296,12 @@ async def merge_vectorstore(file: UploadFile = File(...)):
|
|
296 |
return result
|
297 |
|
298 |
@app.get("/")
|
299 |
-
async def root(
|
|
|
|
|
|
|
300 |
return {
|
301 |
-
"message": "
|
302 |
}
|
303 |
|
304 |
|
|
|
296 |
return result
|
297 |
|
298 |
@app.get("/")
|
299 |
+
async def root():
|
300 |
+
"""
|
301 |
+
Root endpoint that provides a welcome message.
|
302 |
+
"""
|
303 |
return {
|
304 |
+
"message": "Welcome to the EduLearn AI."
|
305 |
}
|
306 |
|
307 |
|