Merge pull request #19042 from Classic298/remove-litellm-endpoint

refactor: Remove unused litellm endpoint and associated frontend code
This commit is contained in:
Tim Baek
2025-11-08 15:12:39 -05:00
committed by GitHub
3 changed files with 1 additions and 43 deletions

View File

@@ -126,10 +126,3 @@ async def download_db(user=Depends(get_admin_user)):
)
@router.get("/litellm/config")
async def download_litellm_config_yaml(user=Depends(get_admin_user)):
return FileResponse(
f"{DATA_DIR}/litellm/config.yaml",
media_type="application/octet-stream",
filename="config.yaml",
)