Spaces:
Runtime error
Runtime error
File size: 684 Bytes
92a86ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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
|