Persona constructor
const
Persona({
- required String name,
- TMetaData? metaData,
- required String expertise,
- List<
Activity> ? activities, - List<
Checklist> ? checklists, - List<
Instruction> ? instructions, - List<
Template> ? templates, - List<
Tool> ? tools, - List<
Workflow> ? workflows, - TCliTool? cliTool,
- String? command,
- TPromptDelivery promptDelivery = TPromptDelivery.system,
- required String identity,
Implementation
const Persona({
required super.name,
super.metaData,
required super.expertise,
super.activities,
super.checklists,
super.instructions,
super.templates,
super.tools,
super.workflows,
super.cliTool,
super.command,
super.promptDelivery,
required this.identity,
});