mpt-7b / callback_with_config.py
irenedea's picture
LLM-foundry update March 26, 2024 23:50:31
3ff9962 verified
import abc
from typing import Any
class CallbackWithConfig(Callback, abc.ABC):
"""A callback that takes a config dictionary as an argument, in addition to.
its other kwargs.
"""
def __init__(self, config: dict[str, Any], *args: Any, **kwargs: Any) -> None:
del config, args, kwargs
pass