11 lines
266 B
Python
11 lines
266 B
Python
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
|