addToolChatMessage method
Add a Tool response message to the history.
Implementation
Future<void> addToolChatMessage({
required final String toolCallId,
required final String content,
}) {
return addChatMessage(
ChatMessage.tool(
toolCallId: toolCallId,
content: content,
),
);
}