From 95e189d1d8241f1cebad8f2f64161cc2e46e298c Mon Sep 17 00:00:00 2001 From: ManishMadan2882 Date: Wed, 2 Apr 2025 15:29:04 +0530 Subject: [PATCH] (feat:base/agents) default attachment --- application/llm/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/llm/base.py b/application/llm/base.py index 0fce208c..1305a98b 100644 --- a/application/llm/base.py +++ b/application/llm/base.py @@ -55,3 +55,6 @@ class BaseLLM(ABC): def _supports_tools(self): raise NotImplementedError("Subclass must implement _supports_tools method") + + def prepare_messages_with_attachments(self, messages, attachments=None): + return messages