Spaces:
Sleeping
Sleeping
File size: 214 Bytes
9a18272 |
1 2 3 4 5 6 7 8 |
function saveChat(history) {
localStorage.setItem('chat_history', JSON.stringify(history));
}
function loadChat() {
const history = JSON.parse(localStorage.getItem('chat_history') || '[]');
return history;
} |