mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
refactor location of proxy fixes
This commit is contained in:
parent
0af61bd88b
commit
5d85af5cee
4 changed files with 50 additions and 48 deletions
|
@ -61,13 +61,14 @@ from litellm.constants import (
|
||||||
DEFAULT_ALLOWED_FAILS,
|
DEFAULT_ALLOWED_FAILS,
|
||||||
)
|
)
|
||||||
from litellm.types.guardrails import GuardrailItem
|
from litellm.types.guardrails import GuardrailItem
|
||||||
from litellm_proxy._types import (
|
from litellm.types.proxy.management_endpoints.ui_sso import DefaultTeamSSOParams
|
||||||
|
from litellm.types.utils import (
|
||||||
|
StandardKeyGenerationConfig,
|
||||||
|
LlmProviders,
|
||||||
KeyManagementSystem,
|
KeyManagementSystem,
|
||||||
KeyManagementSettings,
|
KeyManagementSettings,
|
||||||
LiteLLM_UpperboundKeyGenerateParams,
|
LiteLLM_UpperboundKeyGenerateParams,
|
||||||
)
|
)
|
||||||
from litellm.types.proxy.management_endpoints.ui_sso import DefaultTeamSSOParams
|
|
||||||
from litellm.types.utils import StandardKeyGenerationConfig, LlmProviders
|
|
||||||
from litellm.integrations.custom_logger import CustomLogger
|
from litellm.integrations.custom_logger import CustomLogger
|
||||||
from litellm.litellm_core_utils.logging_callback_manager import LoggingCallbackManager
|
from litellm.litellm_core_utils.logging_callback_manager import LoggingCallbackManager
|
||||||
import httpx
|
import httpx
|
||||||
|
|
|
@ -2276,3 +2276,48 @@ class KeyManagementSystem(enum.Enum):
|
||||||
HASHICORP_VAULT = "hashicorp_vault"
|
HASHICORP_VAULT = "hashicorp_vault"
|
||||||
LOCAL = "local"
|
LOCAL = "local"
|
||||||
AWS_KMS = "aws_kms"
|
AWS_KMS = "aws_kms"
|
||||||
|
|
||||||
|
|
||||||
|
class KeyManagementSettings(LiteLLMPydanticObjectBase):
|
||||||
|
hosted_keys: Optional[List] = None
|
||||||
|
store_virtual_keys: Optional[bool] = False
|
||||||
|
"""
|
||||||
|
If True, virtual keys created by litellm will be stored in the secret manager
|
||||||
|
"""
|
||||||
|
prefix_for_stored_virtual_keys: str = "litellm/"
|
||||||
|
"""
|
||||||
|
If set, this prefix will be used for stored virtual keys in the secret manager
|
||||||
|
"""
|
||||||
|
|
||||||
|
access_mode: Literal["read_only", "write_only", "read_and_write"] = "read_only"
|
||||||
|
"""
|
||||||
|
Access mode for the secret manager, when write_only will only use for writing secrets
|
||||||
|
"""
|
||||||
|
|
||||||
|
primary_secret_name: Optional[str] = None
|
||||||
|
"""
|
||||||
|
If set, will read secrets from this primary secret in the secret manager
|
||||||
|
|
||||||
|
eg. on AWS you can store multiple secret values as K/V pairs in a single secret
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class LiteLLM_UpperboundKeyGenerateParams(LiteLLMPydanticObjectBase):
|
||||||
|
"""
|
||||||
|
Set default upperbound to max budget a key called via `/key/generate` can be.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
max_budget (Optional[float], optional): Max budget a key can be. Defaults to None.
|
||||||
|
budget_duration (Optional[str], optional): Duration of the budget. Defaults to None.
|
||||||
|
duration (Optional[str], optional): Duration of the key. Defaults to None.
|
||||||
|
max_parallel_requests (Optional[int], optional): Max number of requests that can be made in parallel. Defaults to None.
|
||||||
|
tpm_limit (Optional[int], optional): Tpm limit. Defaults to None.
|
||||||
|
rpm_limit (Optional[int], optional): Rpm limit. Defaults to None.
|
||||||
|
"""
|
||||||
|
|
||||||
|
max_budget: Optional[float] = None
|
||||||
|
budget_duration: Optional[str] = None
|
||||||
|
duration: Optional[str] = None
|
||||||
|
max_parallel_requests: Optional[int] = None
|
||||||
|
tpm_limit: Optional[int] = None
|
||||||
|
rpm_limit: Optional[int] = None
|
||||||
|
|
|
@ -173,27 +173,6 @@ def hash_token(token: str):
|
||||||
return hashed_token
|
return hashed_token
|
||||||
|
|
||||||
|
|
||||||
class LiteLLM_UpperboundKeyGenerateParams(LiteLLMPydanticObjectBase):
|
|
||||||
"""
|
|
||||||
Set default upperbound to max budget a key called via `/key/generate` can be.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
max_budget (Optional[float], optional): Max budget a key can be. Defaults to None.
|
|
||||||
budget_duration (Optional[str], optional): Duration of the budget. Defaults to None.
|
|
||||||
duration (Optional[str], optional): Duration of the key. Defaults to None.
|
|
||||||
max_parallel_requests (Optional[int], optional): Max number of requests that can be made in parallel. Defaults to None.
|
|
||||||
tpm_limit (Optional[int], optional): Tpm limit. Defaults to None.
|
|
||||||
rpm_limit (Optional[int], optional): Rpm limit. Defaults to None.
|
|
||||||
"""
|
|
||||||
|
|
||||||
max_budget: Optional[float] = None
|
|
||||||
budget_duration: Optional[str] = None
|
|
||||||
duration: Optional[str] = None
|
|
||||||
max_parallel_requests: Optional[int] = None
|
|
||||||
tpm_limit: Optional[int] = None
|
|
||||||
rpm_limit: Optional[int] = None
|
|
||||||
|
|
||||||
|
|
||||||
class KeyManagementRoutes(str, enum.Enum):
|
class KeyManagementRoutes(str, enum.Enum):
|
||||||
"""
|
"""
|
||||||
Enum for key management routes
|
Enum for key management routes
|
||||||
|
@ -1237,30 +1216,6 @@ class OrganizationRequest(LiteLLMPydanticObjectBase):
|
||||||
class DeleteOrganizationRequest(LiteLLMPydanticObjectBase):
|
class DeleteOrganizationRequest(LiteLLMPydanticObjectBase):
|
||||||
organization_ids: List[str] # required
|
organization_ids: List[str] # required
|
||||||
|
|
||||||
class KeyManagementSettings(LiteLLMPydanticObjectBase):
|
|
||||||
hosted_keys: Optional[List] = None
|
|
||||||
store_virtual_keys: Optional[bool] = False
|
|
||||||
"""
|
|
||||||
If True, virtual keys created by litellm will be stored in the secret manager
|
|
||||||
"""
|
|
||||||
prefix_for_stored_virtual_keys: str = "litellm/"
|
|
||||||
"""
|
|
||||||
If set, this prefix will be used for stored virtual keys in the secret manager
|
|
||||||
"""
|
|
||||||
|
|
||||||
access_mode: Literal["read_only", "write_only", "read_and_write"] = "read_only"
|
|
||||||
"""
|
|
||||||
Access mode for the secret manager, when write_only will only use for writing secrets
|
|
||||||
"""
|
|
||||||
|
|
||||||
primary_secret_name: Optional[str] = None
|
|
||||||
"""
|
|
||||||
If set, will read secrets from this primary secret in the secret manager
|
|
||||||
|
|
||||||
eg. on AWS you can store multiple secret values as K/V pairs in a single secret
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
|
||||||
class TeamDefaultSettings(LiteLLMPydanticObjectBase):
|
class TeamDefaultSettings(LiteLLMPydanticObjectBase):
|
||||||
team_id: str
|
team_id: str
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ from litellm.types.utils import (
|
||||||
ModelResponse,
|
ModelResponse,
|
||||||
ModelResponseStream,
|
ModelResponseStream,
|
||||||
TextCompletionResponse,
|
TextCompletionResponse,
|
||||||
|
KeyManagementSettings,
|
||||||
)
|
)
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue