AgentConfig constructor

AgentConfig({
  1. required String? agentId,
  2. String agentType = '',
  3. String description = '',
  4. String instruction = '',
  5. List<Tool> tools = const [],
  6. List<String> subAgents = const [],
})

Implementation

AgentConfig({
  required this.agentId,
  this.agentType = '',
  this.description = '',
  this.instruction = '',
  this.tools = const [],
  this.subAgents = const [],
}) : super(fullyQualifiedName);