export interface IThread {
    threadId: string;
    title: string;
    summary: string;
    embeddings: string;
    updatedAt: string;
    createdAt: string;
}
