forked from phoenix/litellm-mirror
10 lines
222 B
Python
10 lines
222 B
Python
from typing import List
|
|
|
|
from typing_extensions import Dict, Required, TypedDict, override
|
|
|
|
from litellm.integrations.custom_logger import CustomLogger
|
|
|
|
|
|
class AdapterItem(TypedDict):
|
|
id: str
|
|
adapter: CustomLogger
|