mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
[Feat-Proxy] add service accounts backend (#5852)
* service_account_settings on config * add service account checks * call service_account_checks * add testing for service accounts
This commit is contained in:
parent
5337440ff9
commit
922c8ac758
4 changed files with 119 additions and 2 deletions
|
@ -70,6 +70,7 @@ from litellm.proxy.auth.auth_utils import (
|
|||
from litellm.proxy.auth.oauth2_check import check_oauth2_token
|
||||
from litellm.proxy.auth.oauth2_proxy_hook import handle_oauth2_proxy_request
|
||||
from litellm.proxy.auth.route_checks import non_admin_allowed_routes_check
|
||||
from litellm.proxy.auth.service_account_checks import service_account_checks
|
||||
from litellm.proxy.common_utils.http_parsing_utils import _read_request_body
|
||||
from litellm.proxy.utils import _to_ns
|
||||
|
||||
|
@ -965,6 +966,12 @@ async def user_api_key_auth(
|
|||
else:
|
||||
_team_obj = None
|
||||
|
||||
# Check 9: Check if key is a service account key
|
||||
await service_account_checks(
|
||||
valid_token=valid_token,
|
||||
request_data=request_data,
|
||||
)
|
||||
|
||||
user_api_key_cache.set_cache(
|
||||
key=valid_token.team_id, value=_team_obj
|
||||
) # save team table in cache - used for tpm/rpm limiting - tpm_rpm_limiter.py
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue