feat: title auto-generate for openai apis

This commit is contained in:
Timothy J. Baek 2024-03-09 21:52:19 -08:00
parent a4ca1fc5c4
commit bd84753c6b

View file

@ -675,7 +675,12 @@
if (messages.length == 2) {
window.history.replaceState(history.state, '', `/c/${_chatId}`);
await setChatTitle(_chatId, userPrompt);
if ($settings?.titleAutoGenerateModel) {
await generateChatTitle(_chatId, userPrompt);
} else {
await setChatTitle(_chatId, userPrompt);
}
}
};