From 88713a95c10388ec971486cf5ffd1cbdd8021edc Mon Sep 17 00:00:00 2001 From: cyclop-bot <178948048+cyclop-bot@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:04:26 -0500 Subject: [PATCH] Add get_bot_status abstract method to InferenceBot --- inference_bot.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/inference_bot.py b/inference_bot.py index 0c516d9..198bae9 100644 --- a/inference_bot.py +++ b/inference_bot.py @@ -43,4 +43,9 @@ class InferenceBot(ABC): An attribute (e.g., a dictionary) to store the processing status for users. Example usage in subclass: self.processing_status.get(user_id) """ - pass \ No newline at end of file + pass + + @abstractmethod + def get_bot_status(self): + """Returns a human-readable message describing the model in use and the system prompt path.""" + pass