Commit bd84753c authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: title auto-generate for openai apis

parent a4ca1fc5
...@@ -675,8 +675,13 @@ ...@@ -675,8 +675,13 @@
if (messages.length == 2) { if (messages.length == 2) {
window.history.replaceState(history.state, '', `/c/${_chatId}`); window.history.replaceState(history.state, '', `/c/${_chatId}`);
if ($settings?.titleAutoGenerateModel) {
await generateChatTitle(_chatId, userPrompt);
} else {
await setChatTitle(_chatId, userPrompt); await setChatTitle(_chatId, userPrompt);
} }
}
}; };
const stopResponse = () => { const stopResponse = () => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment