File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9999 "limit" : 0
100100 },
101101 "reportUnknownArgumentType" : {
102- "limit" : 44655
102+ "limit" : 44526
103103 },
104104 "reportUnknownLambdaType" : {
105105 "limit" : 109
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ async def list_guardrails_v2(
264264 if isinstance (litellm_params , LitellmParams )
265265 else litellm_params
266266 ) or {}
267- masked_litellm_params_dict = _get_masked_values (
267+ masked_litellm_params_dict : dict [ str , object ] = _get_masked_values (
268268 litellm_params_dict ,
269269 unmasked_length = 4 ,
270270 number_of_asterisks = 4 ,
@@ -303,7 +303,7 @@ async def list_guardrails_v2(
303303 if isinstance (in_memory_litellm_params_raw , LitellmParams )
304304 else in_memory_litellm_params_raw
305305 ) or {}
306- masked_in_memory_litellm_params = _get_masked_values (
306+ masked_in_memory_litellm_params : dict [ str , object ] = _get_masked_values (
307307 in_memory_litellm_params_dict ,
308308 unmasked_length = 4 ,
309309 number_of_asterisks = 4 ,
@@ -1320,7 +1320,7 @@ async def get_guardrail_info(guardrail_id: str):
13201320 if isinstance (litellm_params , LitellmParams )
13211321 else litellm_params
13221322 ) or {}
1323- masked_litellm_params_dict : Final = _get_masked_values (
1323+ masked_litellm_params_dict : Final [ dict [ str , object ]] = _get_masked_values (
13241324 result_litellm_params_dict ,
13251325 unmasked_length = 4 ,
13261326 number_of_asterisks = 4 ,
You can’t perform that action at this time.
0 commit comments