创建任务消息(主控 -> 子代理)
(String fromAgent, String content)
| 30 | * 创建任务消息(主控 -> 子代理) |
| 31 | */ |
| 32 | public static AgentMessage task(String fromAgent, String content) { |
| 33 | return new AgentMessage(fromAgent, null, content, Type.TASK); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * 创建结果消息(子代理 -> 主控) |
no outgoing calls