mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
fix: address review feedback - move constant below imports, add return type
This commit is contained in:
parent
476aed3fd6
commit
89140f9f33
2 changed files with 3 additions and 3 deletions
|
|
@ -12,10 +12,10 @@ from litellm.proxy._types import (
|
|||
UserAPIKeyAuth,
|
||||
)
|
||||
|
||||
_LITELLM_ROUTES_MEMBER_NAMES: frozenset = frozenset(LiteLLMRoutes._member_names_)
|
||||
|
||||
from .auth_checks_organization import _user_is_org_admin
|
||||
|
||||
_LITELLM_ROUTES_MEMBER_NAMES: frozenset = frozenset(LiteLLMRoutes._member_names_)
|
||||
|
||||
|
||||
class RouteChecks:
|
||||
@staticmethod
|
||||
|
|
|
|||
|
|
@ -3429,7 +3429,7 @@ class DynamicPromptManagementParamLiteral(str, Enum):
|
|||
VECTOR_STORE_IDS = "vector_store_ids"
|
||||
|
||||
@classmethod
|
||||
def list_all_params(cls):
|
||||
def list_all_params(cls) -> frozenset:
|
||||
return _DYNAMIC_PROMPT_MANAGEMENT_PARAMS
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue