Spaces:
Runtime error
Runtime error
| from agency_swarm.agents import Agent | |
| class ExpertDataAnalyst(Agent): | |
| def __init__(self): | |
| super().__init__( | |
| name="ExpertDataAnalyst", | |
| description="Analyzes sales-related data to identify trends, patterns, and actionable insights that guide the sales strategy. Collaborates with the SalesManagerCEO to ensure data-driven, tailored strategies for maximizing sales process efficacy.", | |
| instructions="./instructions.md", | |
| files_folder="./files", | |
| schemas_folder="./schemas", | |
| tools=[], | |
| tools_folder="./tools" | |
| ) | |
| def response_validator(self, message): | |
| return message | |