ToolResultObject constructor
const
ToolResultObject({
- required String textResultForLlm,
- required ToolResultType resultType,
- String? error,
- Map<
String, dynamic> ? toolTelemetry, - List<
ToolBinaryResult> ? binaryResultsForLlm, - String? sessionLog,
Implementation
const ToolResultObject({
required this.textResultForLlm,
required this.resultType,
this.error,
this.toolTelemetry,
this.binaryResultsForLlm,
this.sessionLog,
});