feat(langfuse_endpoints.py): support langfuse pass through endpoints by default

This commit is contained in:
Krrish Dholakia 2024-08-19 17:28:34 -07:00
parent b850edffc5
commit c1a3d86fe4
3 changed files with 122 additions and 1 deletions

View file

@ -233,6 +233,9 @@ from litellm.proxy.utils import (
from litellm.proxy.vertex_ai_endpoints.google_ai_studio_endpoints import (
router as gemini_router,
)
from litellm.proxy.vertex_ai_endpoints.langfuse_endpoints import (
router as langfuse_router,
)
from litellm.proxy.vertex_ai_endpoints.vertex_endpoints import router as vertex_router
from litellm.proxy.vertex_ai_endpoints.vertex_endpoints import set_default_vertex_config
from litellm.router import (
@ -9738,6 +9741,7 @@ app.include_router(router)
app.include_router(fine_tuning_router)
app.include_router(vertex_router)
app.include_router(gemini_router)
app.include_router(langfuse_router)
app.include_router(pass_through_router)
app.include_router(health_router)
app.include_router(key_management_router)