vericudebuget's picture
Create chat.js
9a18272 verified
raw
history blame
214 Bytes
function saveChat(history) {
localStorage.setItem('chat_history', JSON.stringify(history));
}
function loadChat() {
const history = JSON.parse(localStorage.getItem('chat_history') || '[]');
return history;
}