AgentService constructor

AgentService({
  1. required AiProvider provider,
  2. required AgentCommandRunner runner,
  3. required CommandShield shield,
  4. required AiConfig config,
  5. required CommandSyntax syntax,
  6. required AgentEnvironment environment,
  7. required AgentHandlers handlers,
  8. AgentStyle style = const AgentStyle(),
  9. String? language,
})

Implementation

AgentService({
  required this.provider,
  required this.runner,
  required this.shield,
  required this.config,
  required this.syntax,
  required this.environment,
  required this.handlers,
  this.style = const AgentStyle(),
  this.language,
});