LibreChat/api/app/titleConvo.js

25 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-03-02 13:52:41 -05:00
const { Configuration, OpenAIApi } = require('openai');
const titleConvo = async ({ message, response, model }) => {
2023-03-10 12:55:45 -05:00
const configuration = new Configuration({
apiKey: process.env.OPENAI_KEY
});
const openai = new OpenAIApi(configuration);
const completion = await openai.createChatCompletion({
model: 'gpt-3.5-turbo',
messages: [
{
role: 'system',
content:
'You are a title-generator with one job: giving a conversation, detect the language and titling the conversation provided by a user in title case, using the same language.'
2023-03-10 12:55:45 -05:00
},
{ role: 'user', content: `In 5 words or less, summarize the conversation below with a title in title case using the language the user writes in. Don't refer to the participants of the conversation by name. Do not include punctuation or quotation marks. Your response should be in title case, exclusively containing the title. Conversation:\n\nUser: "${message}"\n\n${model}: "${response}"\n\nTitle: ` },
2023-03-10 12:55:45 -05:00
]
});
2023-03-02 13:52:41 -05:00
2023-03-10 12:55:45 -05:00
//eslint-disable-next-line
return completion.data.choices[0].message.content.replace(/["\.]/g, '');
2023-03-02 13:52:41 -05:00
};
module.exports = titleConvo;