import type * as ElevenLabs from "../index"; /** * 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. * chunk_highlights: chunk_text split into matched/unmatched segments for highlighting. * Only populated for keyword/text search, not semantic search. * score: similarity score of the message to the search query */ export interface MessagesSearchResult { conversationId: string; agentId: string; agentName?: string; transcriptIndex: number; chunkText: string; chunkHighlights?: ElevenLabs.SearchHighlightSegment[]; score: number; conversationStartTimeUnixSecs: number; }