mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-14 12:26:25 +00:00
fix: resolve mypy type error in _is_potential_model_name_in_model_cost
Add explicit str() conversion when calling _get_model_cost_key to satisfy mypy type checking. TypedDict.values() returns object type, not str.
This commit is contained in:
+1
-1
@@ -4867,7 +4867,7 @@ def _is_potential_model_name_in_model_cost(
|
||||
Check if the potential model name is in the model cost (case-insensitive).
|
||||
"""
|
||||
return any(
|
||||
_get_model_cost_key(potential_model_name) is not None
|
||||
_get_model_cost_key(str(potential_model_name)) is not None
|
||||
for potential_model_name in potential_model_names.values()
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user