SkillToolInlineOutput constructor

const SkillToolInlineOutput({
  1. required bool success,
  2. required String commandName,
  3. List<String>? allowedTools,
  4. String? model,
  5. String status = 'inline',
})

Implementation

const SkillToolInlineOutput({
  required this.success,
  required this.commandName,
  this.allowedTools,
  this.model,
  this.status = 'inline',
});