mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
style(cache_warming): sort imports to satisfy the I001 ceiling after rebase
This commit is contained in:
parent
b20f210abc
commit
18dc38f9f6
2 changed files with 6 additions and 6 deletions
|
|
@ -6,6 +6,11 @@ from typing import TYPE_CHECKING, Literal
|
|||
|
||||
from litellm._logging import verbose_router_logger
|
||||
from litellm.constants import DEFAULT_CHARS_PER_TOKEN
|
||||
from litellm.litellm_core_utils.core_helpers import (
|
||||
get_caller_scope,
|
||||
get_request_metadata_field,
|
||||
iter_request_metadata_dicts,
|
||||
)
|
||||
from litellm.router_strategy.complexity_router.cache_warming.eligibility import (
|
||||
min_prompt_cache_tokens_for_warm_set,
|
||||
resolve_warm_models,
|
||||
|
|
@ -17,11 +22,6 @@ from litellm.router_strategy.complexity_router.cache_warming.types import (
|
|||
CacheWarmingPayload,
|
||||
compress_payload,
|
||||
)
|
||||
from litellm.litellm_core_utils.core_helpers import (
|
||||
get_caller_scope,
|
||||
get_request_metadata_field,
|
||||
iter_request_metadata_dicts,
|
||||
)
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from litellm.router_strategy.complexity_router.complexity_router import ComplexityRouter
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import base64
|
|||
import hashlib
|
||||
import json
|
||||
import zlib
|
||||
from functools import lru_cache
|
||||
from collections.abc import Mapping
|
||||
from functools import lru_cache
|
||||
from typing import Literal
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue