Enable OCR in librechat #6875
-
Hi there, I am trying to utilise the OCR capabilities by making an addition to the librechat.yaml file:
I have tried to add ocr as capability for the agents, but was met with this error:
Additionally, I have set these in the .env file:
I was wondering how I can get around this? I notice that the version of librechat.yaml is 1.2.1, and ocr was supported from >1.2.2 however if I try and change this version, I get this when starting the docker container:
Any guidance on this would be great! Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Here's how to update: Updating Instructions (docker): # Linux command to Remove all existing images
docker images -a | grep "librechat" | awk '{print $3}' | xargs docker rmi
# Windows Powershell
docker images -a | findstr "librechat" | ForEach-Object { docker rmi $_.Split()[2] } Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat |
Beta Was this translation helpful? Give feedback.
Here's how to update:
Updating Instructions (docker):
Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat