var http = this http.fetch[cell.DOC] = `Initiate an asynchronous HTTP GET request. This function enqueues an HTTP GET request for the specified URL. It supports both buffered responses (full response collected in memory) and streaming data (processed as it arrives). The request is executed asynchronously, and its completion or streaming data is handled via callbacks provided in the options. Use 'poll' to process the results. :param url: A string representing the URL to fetch. :param options: Either a callback function or an object with optional properties: - 'callback': A function invoked upon request completion, receiving an object with 'data' (string or null) and 'error' (string or null) properties. - 'on_data': A function invoked for each chunk of streaming data, receiving a string chunk as its argument. If supplied, 'callback.data' will be null. :return: null :throws: - An error if the URL is not a string or is invalid. - An error if the options argument is neither a function nor an object. - An error if memory allocation or CURL initialization fails. ` return http