Spaces:
Sleeping
Sleeping
function saveChat(history) { | |
localStorage.setItem('chat_history', JSON.stringify(history)); | |
} | |
function loadChat() { | |
const history = JSON.parse(localStorage.getItem('chat_history') || '[]'); | |
return history; | |
} |