Soumik Bose commited on
Commit
5062b98
·
1 Parent(s): 14cc6a3
Files changed (1) hide show
  1. main.py +5 -1
main.py CHANGED
@@ -177,4 +177,8 @@ async def create_embeddings(request: EmbedRequest):
177
 
178
  @app.get("/ping")
179
  async def ping():
180
- return {"message": "embed-api is alive!"}
 
 
 
 
 
177
 
178
  @app.get("/ping")
179
  async def ping():
180
+ return {"message": "embed-api is alive!"}
181
+
182
+ @app.get("/")
183
+ async def root():
184
+ return {"version": "3.0.0", "message": "Multi-Dimensional Embedding API Server is running."}