@Eddynson Vega As per the error ModuleNotFoundError: No module named 'requests' looks like you have not installed the module requests
.
To troubleshoot these types of errors you can always refer to this document.
If you have any requirement where you need to use any other packages that are not predefined in the functions then you need to add the names or names along with versions of the required packages to the requirements.txt file. Please refer to this document for more details
Your requirement.txt file will be as below per the exception but in case if you are using any other packages then please make sure that you have defined the same.
azure-functions
requests
For your reference, I will suggest you to review this article which will can help you to monitor azure function. Once you have set it up you can see the above error in application insights. You can also see these exceptions in the storage account that you have configured on your function app.
Hope the above helps you to resolve the issue. Feel free to get back to me if you need any assistance.