Title generation not working #8728
Unanswered
shwetabelt
asked this question in
Q&A
Replies: 0 comments
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.
-
For me couple of things are not working.
http://localhost:3080/api/convos/gen_title
{
"message": "Title not found or method not implemented for the conversation's endpoint"
}
ALLOW_REGISTRATION=true
ALLOW_SOCIAL_LOGIN=true
ALLOW_SOCIAL_REGISTRATION=true
ALLOW_PASSWORD_RESET=false
Below is my librechat.yaml for reference.
`
version: 1.2.1
cache: true
registration:
socialLogins: ['github', 'google', 'discord', 'openid', 'facebook', 'apple', 'saml']
fileConfig:
endpoints:
default:
fileSizeLimit: 10
totalSizeLimit: 50
supportedMimeTypes:
- "image/."
- "text/."
- "application/."
- "audio/."
- "video/.*"
serverFileSizeLimit: 1000
avatarSizeLimit: 2
endpoints:
azureOpenAI:
titleModel: "gpt-3.5-turbo-1106" // Tried using almost all versions here
titleConvo: true
plugins: true
groups:
- group: "eastus"
assistants: true
apiKey: "${AZURE_OPENAI_API_KEY}"
version: "2025-01-01-preview"
baseURL: "${AZURE_URL}" // Without this base url i was getting MODEL_NOT_FOUND and was unable to do any search
instanceName: "gpt-4.1-mini"
models:
gpt-4.1-mini:
deploymentName: "${AZURE_DEPLOYMENT_ID}"
version: "2025-01-01-preview"
google:
streamRate: 20
titleModel: "gpt-4o-mini"
titleConvo: true
groups:
- group: "gemini"
assistants: true
apiKey: "${GOOGLE_API}"
baseURL: "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash"
models:
gemini-2.0-flash:
deploymentName:
"gemini-2.0-flash"
Beta Was this translation helpful? Give feedback.
All reactions