ModuleNotFoundError: No module named 'openai
I am experiencing a "ModuleNotFoundError: No module named 'openai'" error when running my Azure function (HttpTrigger1). I have verified that the 'openai' module is installed correctly in my local environment and have included the line 'openai==0.27.0' in my requirements.txt file. I also ran the command 'pip install -r requirements.txt' to install the dependencies in my Azure Function environment. However, I am still getting the same error. I would like assistance in resolving this issue and ensuring that the module is available in my Azure Function environment. Can you help me with this?