backend - new endpoint to show cache hit stats

This commit is contained in:
Ishaan Jaff 2024-06-21 13:08:54 -07:00
parent 12f4fb3a42
commit 10e88a939d
2 changed files with 107 additions and 0 deletions

View file

@ -116,6 +116,9 @@ from litellm.exceptions import RejectedRequestError
from litellm.integrations.slack_alerting import SlackAlerting, SlackAlertingArgs
from litellm.llms.custom_httpx.httpx_handler import HTTPHandler
from litellm.proxy._types import *
from litellm.proxy.analytics_endpoints.analytics_endpoints import (
router as analytics_router,
)
from litellm.proxy.auth.auth_checks import (
allowed_routes_check,
common_checks,
@ -9139,3 +9142,4 @@ app.include_router(internal_user_router)
app.include_router(team_router)
app.include_router(spend_management_router)
app.include_router(caching_router)
app.include_router(analytics_router)