Remove abstract method set_callbacks from BaseLLM class

This commit is contained in:
Lorenze Jay
2025-03-12 08:16:35 -07:00
parent afe220d3e8
commit b305ef8f48

View File

@@ -113,13 +113,3 @@ class BaseLLM(ABC):
The context window size as an integer.
"""
pass
@abstractmethod
def set_callbacks(self, callbacks: List[Any]) -> None:
"""Set callback functions for the LLM.
Args:
callbacks: List of callback functions to be executed during
and after LLM calls.
"""
pass