AgentDefinition constructor

const AgentDefinition({
  1. required String agentType,
  2. required String name,
  3. required String description,
  4. String? systemPrompt,
  5. Set<String>? tools,
  6. Set<String>? disallowedTools,
  7. String? model,
  8. bool background = false,
  9. bool isBuiltIn = true,
})

Implementation

const AgentDefinition({
  required this.agentType,
  required this.name,
  required this.description,
  this.systemPrompt,
  this.tools,
  this.disallowedTools,
  this.model,
  this.background = false,
  this.isBuiltIn = true,
});