From 2edc80189f2cb74c7d28cad696975a7b0f3912ac Mon Sep 17 00:00:00 2001 From: bucolucas Date: Sat, 17 Aug 2024 22:15:01 -0500 Subject: [PATCH] Add persona_tool.py implementing the PersonaTool class --- tools/persona_tool.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools/persona_tool.py diff --git a/tools/persona_tool.py b/tools/persona_tool.py new file mode 100644 index 0000000..9829553 --- /dev/null +++ b/tools/persona_tool.py @@ -0,0 +1,10 @@ +from base_tool import BaseTool + +class PersonaTool(BaseTool): + def __init__(self, persona_name): + super().__init__() + self.persona_name = persona_name + + def perform_action(self): + # Implement the action specific to the persona + pass