mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-08 01:02:22 +08:00
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
class TeamContext:
|
|
def __init__(self, name: str, description: str, rule: str, agents: list, max_steps: int = 100):
|
|
"""
|
|
Initialize the TeamContext with a name, description, rules, a list of agents, and a user question.
|
|
:param name: The name of the group context.
|
|
:param description: A description of the group context.
|
|
:param rule: The rules governing the group context.
|
|
:param agents: A list of agents in the context.
|
|
"""
|
|
self.name = name
|
|
self.description = description
|
|
self.rule = rule
|
|
self.agents = agents
|
|
self.user_task = "" # For backward compatibility
|
|
self.task = None # Will be a Task instance
|
|
self.model = None # Will be an instance of LLMModel
|
|
self.task_short_name = None # Store the task directory name
|
|
# List of agents that have been executed
|
|
self.agent_outputs: list = []
|
|
self.current_steps = 0
|
|
self.max_steps = max_steps
|
|
|
|
|
|
class AgentOutput:
|
|
def __init__(self, agent_name: str, output: str):
|
|
self.agent_name = agent_name
|
|
self.output = output |