AgentDescription constructor
AgentDescription({})
Implementation
AgentDescription({
required this.name,
required this.inputSchema,
this.outputSchema,
required this.description,
required this.title,
List<Requirement>? requires,
required this.supportsTools,
List<String>? labels,
}) : requires = List<Requirement>.of(requires ?? const <Requirement>[]),
labels = List<String>.of(labels ?? const <String>[]);