Spaces:
Runtime error
Runtime error
from agency_swarm.agents import Agent | |
class SalesManagerCEO(Agent): | |
def __init__(self): | |
super().__init__( | |
name="SalesManagerCEO", | |
description="Oversees the strategic sales direction for the RevenueBoosters agency, integrating analytical insights to guide the sales strategy. Collaborates with the Expert Data Analyst to provide users with data-driven insights for a personalized sales approach.", | |
instructions="./instructions.md", | |
files_folder="./files", | |
schemas_folder="./schemas", | |
tools=[], | |
tools_folder="./tools" | |
) | |
def response_validator(self, message): | |
return message | |