mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-19 00:01:29 +00:00
fix(proxy): satisfy TypeSafe CI gates
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
78eb92ca55
commit
9470aa47f9
2 changed files with 2 additions and 1 deletions
|
|
@ -534,7 +534,7 @@ async def typesafe_proxy_route(
|
|||
endpoint: str,
|
||||
request: Request,
|
||||
fastapi_response: Response,
|
||||
user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth),
|
||||
user_api_key_dict: Annotated[UserAPIKeyAuth, Depends(user_api_key_auth)],
|
||||
):
|
||||
"""[Docs](https://docs.litellm.ai/docs/pass_through/typesafe)"""
|
||||
base_target_url: Final = get_secret_str("TYPESAFE_API_BASE") or "https://api.typesafe.ai"
|
||||
|
|
|
|||
|
|
@ -427,6 +427,7 @@
|
|||
"chat",
|
||||
"completion",
|
||||
"embedding",
|
||||
"evaluation",
|
||||
"guardrail",
|
||||
"image_edit",
|
||||
"image_generation",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue