ChatGPT-4.1 & Tools #6935
Unanswered
cameronjy
asked this question in
Troubleshooting
Replies: 1 comment
-
I don't see the issue here? Look into how to use agents: https://www.librechat.ai/docs/features/agents Also you should update for the most compatibility with latest models. 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.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What happened?
It appears that with the release of ChatGPT-4.1, the tools functionality is not working as expected. Using 4.1 it will not use any of the data from the tools. In my case, ChatGPT-4.1 is hosted in Azure.
Version Information
m5admin@vaai01:~$ docker images | grep librechat
ghcr.io/danny-avila/librechat-dev-api latest 1ceb1f461b00 2 weeks ago 1.06GB
ghcr.io/danny-avila/librechat-dev latest ba55bf83e77d 2 weeks ago 920MB
ghcr.io/danny-avila/librechat-rag-api-dev-lite latest dd05389daecc 2 weeks ago 1.31GB
Steps to Reproduce
This can be verified by building an agent using ChatGPT-4o and then switching the model to ChatGPT-4.1. When using 4.1, the model does not utilize results from Google, Azure Search, or similar integrations.
What browsers are you seeing the problem on?
Microsoft Edge
Relevant log output
Screenshots
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions