Debug steps for Agents not appearing in the dropdown? #6769
Replies: 2 comments
-
First, make sure your build is on latest: 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 Then, make sure in your .env file, that the example: ENDPOINTS=agents,custom,openAI,anthropic You should see it here |
Beta Was this translation helpful? Give feedback.
0 replies
-
D'oh, wasn't in endpoints. Thank you SO much—excited to work with this! |
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.
-
Agents won't appear in the dropdown and I can't find the Agent Builder, just the Assistant Builder under Assistants.
Everything up to date, checked in Chrome and Firefox, everything reloaded from source.
Debug logs:
/app/api/logs # tail debug-2025-04-07.log
elevenlabs.model: "eleven_flash_v2_5",
// 3 voice(s)
elevenlabs.voices: [...],
agents.recursionLimit: 50,
agents.disableBuilder: false,
agents.maxRecursionLimit: 100,
// 2 custom(s)
endpoints.custom: [{"name":"Deepseek","apiKey":"${DEEPSEEK_API_KEY}","baseURL":"https://api.deepseek.com/v1","models":{... [truncated],{"name":"Perplexity","apiKey":"${PERPLEXITY_API_KEY}","baseURL":"https://api.perplexity.ai/","models... [truncated]],
}
2025-04-07T14:19:32.394Z info: Server listening on all interfaces at port 3080. Use http://localhost:3080 to access it
Error log is empty.
Custom endpoints part of librechat.yaml:
endpoints:
agents:
recursionLimit: 50
disableBuilder: false
maxRecursionLimit: 100
custom:
...
What am I not checking?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions