CustomAgentConfig constructor

const CustomAgentConfig({
  1. required String name,
  2. String? displayName,
  3. String? description,
  4. String? prompt,
  5. List<String>? tools,
  6. Map<String, McpServerConfig>? mcpServers,
  7. bool? infer,
})

Implementation

const CustomAgentConfig({
  required this.name,
  this.displayName,
  this.description,
  this.prompt,
  this.tools,
  this.mcpServers,
  this.infer,
});