AgentProfile constructor
const
AgentProfile({
- required String id,
- String? name,
- String? description,
- String? instructions,
- List<
AITool> ? tools, - AgentPriority priority = AgentPriority.normal,
- int? preferredContextTokens,
- 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,
});