chat-ui / src /lib /utils /hashConv.ts
nsarrazin's picture
nsarrazin HF staff
Add optional timestamps to messages (#294)
1eff97d unverified
raw history blame
No virus
450 Bytes
import type { Conversation } from "$lib/types/Conversation";
import { sha256 } from "./sha256";
export async function hashConv(conv: Conversation) {
// messages contains the conversation message but only the immutable part
const messages = conv.messages.map((message) => {
return (({ from, id, content, webSearchId }) => ({ from, id, content, webSearchId }))(message);
});
const hash = await sha256(JSON.stringify(messages));
return hash;
}