SubagentInput constructor

SubagentInput({
  1. required String name,
  2. required String role,
  3. String? model,
  4. String? systemPrompt,
  5. List<String>? tools,
  6. required String task,
})

Implementation

SubagentInput({
  required this.name,
  required this.role,
  this.model,
  this.systemPrompt,
  this.tools,
  required this.task,
});