[Question]: Title Generation - Custom endpoint #4927
Unanswered
QuartzWarrior
asked this question in
Troubleshooting
Replies: 2 comments 5 replies
-
It's using OpenAI API spec, which is why you see that in the logs. It's having issue with the request made for titling. This is what the payload looks like (for me using groq): 2024-12-10T13:18:32.162Z debug: [OpenAIClient] chatCompletion
{
baseURL: "https://api.groq.com/openai/v1",
modelOptions.model: "mixtral-8x7b-32768",
modelOptions.user: "userID",
modelOptions.temperature: 0.2,
modelOptions.presence_penalty: 0,
modelOptions.frequency_penalty: 0,
modelOptions.max_tokens: 16,
// 1 message(s)
modelOptions.messages: [{"role":"system","content":"Please generate a concise, 5-word-or-less title for the conversation, us... [truncated]],
} It's possible your endpoint doesn't support one of those parameters. |
Beta Was this translation helpful? Give feedback.
0 replies
-
just tried it with those params, and seems to work perfectly fine. fyi, ministral-3b-latest works aswell |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is your question?
Why am I getting this error, and how can I fix it?
I'm assuming there must be something wrong with the endpoint used, but not entirely sure.
I'm trying to get title generation to work on my custom endpoint ( the only endpoint enabled in my configs ) but always get the following errors, even though I don't have OpenAI enabled.
More Details
received error
librechat.yaml looks similar to this:
yes, I did provide the api key.
My backend is running on localhost:80, frontend running on localhost:90
My api only allows requests that have the Authorization header with the value being
Bearer sk-*****
What is the main subject of your question?
UI, Endpoints
Screenshots
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions