AgentProfile constructor

const AgentProfile({
  1. required String id,
  2. String? name,
  3. String? description,
  4. String? instructions,
  5. List<AITool>? tools,
  6. AgentPriority priority = AgentPriority.normal,
  7. int? preferredContextTokens,
  8. SamplingDefaults? sampling,
})

Creates a profile.

Implementation

const AgentProfile({
  required this.id,
  this.name,
  this.description,
  this.instructions,
  this.tools,
  this.priority = AgentPriority.normal,
  this.preferredContextTokens,
  this.sampling,
});