Hi, I am trying to use both llama-index, the s3 loader, and s3fs, but all of them together in the latest version raises some incompatibility issues, did anyone else faced something similar?
This is my dockerfile: FROM public.ecr.aws/lambda/python:3.11 RUN pip install llama-hub s3fs COPY app.py ${LAMBDA_TASK_ROOT} CMD [ "app.lambda_handler" ]