From 269e055d39168aa844b397e7d75eba9539255e81 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Thu, 30 Jan 2025 17:02:00 +0100 Subject: [PATCH] Mark LLM.warmup as classmethod --- lumen/ai/llm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lumen/ai/llm.py b/lumen/ai/llm.py index 3529991a..7a1994bc 100644 --- a/lumen/ai/llm.py +++ b/lumen/ai/llm.py @@ -92,6 +92,7 @@ def _add_system_message( messages = [{"role": "system", "content": system}] + messages return messages, input_kwargs + @classmethod def warmup(cls, model_kwargs: dict | None): """ Allows LLM provider to perform actions that ensure that