(fix) proxy_server add LiteLLM: Running

This commit is contained in:
ishaan-jaff 2023-10-10 14:03:17 -07:00
parent ca7e2f6a05
commit d40aeec131

View file

@ -354,4 +354,8 @@ async def retrieve_server_log(request: Request):
filepath = os.path.expanduser('~/.ollama/logs/server.log')
return FileResponse(filepath)
@router.get("/")
async def home(request: Request):
return "LiteLLM: RUNNING"
app.include_router(router)