Creates a tool result message.
factory AIMessage.toolResult(String toolCallId, String content) { return AIMessage( role: AIRole.tool, content: content, toolCallId: toolCallId, ); }