From b305ef8f485d7fe0aff04d502eb46065ea978a59 Mon Sep 17 00:00:00 2001 From: Lorenze Jay Date: Wed, 12 Mar 2025 08:16:35 -0700 Subject: [PATCH] Remove abstract method set_callbacks from BaseLLM class --- src/crewai/llms/base_llm.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/crewai/llms/base_llm.py b/src/crewai/llms/base_llm.py index 1b6f61483..c8eef4fc7 100644 --- a/src/crewai/llms/base_llm.py +++ b/src/crewai/llms/base_llm.py @@ -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