Title Generation Fails in v0.7.9-rc - "parse is not a function" Error #8492
Unanswered
ogipogi
asked this question in
Troubleshooting
Replies: 1 comment
-
I'm not able to reproduce it, and can use azure serverless models for titling conversations.
https://www.librechat.ai/docs/configuration/azure#endpoint-level-configuration For your GPT-4.1 config, try a non-serverless config like this (you don't need to include a endpoints:
azureOpenAI:
streamRate: 35
titleModel: "gpt-4.1"
titleConvo: true
groups:
- group: "region-eastus"
apiKey: "${EASTUS2_API_KEY}"
instanceName: "eastus2"
version: "2024-12-01-preview"
models:
gpt-4.1:
deploymentName: "gpt-4.1" |
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.
-
Bug Description
The
titleConvo
functionality that was working in version 0.7.8 now fails in version 0.7.9-rc and main branch with the error:this.client.chat.completions.parse is not a function
Steps to Reproduce
titleConvo: true
for Azure OpenAI endpointsConfiguration Used
Error Details
Error Message:
Location:
api/server/controllers/agents/client.js #titleConvo
Environment
Expected Behavior
The system should generate conversation titles automatically when
titleConvo: true
is enabled, as it did in version 0.7.8.Actual Behavior
The title generation fails with a function undefined error, suggesting that the
parse
method is not available on the client object.Beta Was this translation helpful? Give feedback.
All reactions