diff --git a/persona_tool.py b/persona_tool.py index 5fffa86..e69de29 100644 --- a/persona_tool.py +++ b/persona_tool.py @@ -1,17 +0,0 @@ -class PersonaTool(BaseTool): - def __init__(self): - super().__init__() - - def generate_response(self, persona_description: str, query: str): - """ - Makes a call to the OpenAI API using the persona as a system prompt. - - Parameters: - persona_description (str): Description of the persona. - query (str): Query to be processed. - - Returns: - str: The response generated by the OpenAI API. - """ - # Call to OpenAI API would be here - pass