/**
 * transcript_index: index of the message in the conversation transcript
 * chunk_text: text of the transcript; transcript messages if very long could have several chunks.
 * score: similarity score of the message to the search query
 */
export interface MessagesSearchResult {
    conversationId: string;
    agentId: string;
    agentName?: string;
    transcriptIndex: number;
    chunkText: string;
    score: number;
    conversationStartTimeUnixSecs: number;
}
