Spaces:
Sleeping
Sleeping
File size: 222 Bytes
469eae6 |
1 2 3 4 5 6 7 8 9 10 11 |
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
|