You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/swarms/structs/agent_roles.py

39 lines
582 B

from typing import Literal
agent_roles = Literal[
"supervisor",
"director",
"boss",
"generator",
"evaluator",
"revisor",
"worker",
"manager",
"team-leader",
"team-manager",
"team-lead",
"researcher",
"analyst",
"architect",
"developer",
"tester",
"qa",
"designer",
"product-owner",
"scrum-master",
"coordinator",
"mentor",
"trainer",
"consultant",
"specialist",
"expert",
"strategist",
"planner",
"executor",
"reviewer",
"auditor",
]
# print(agent_roles)