/** * Transcript Chunking Service * * Parses JSONL session transcripts, chunks them intelligently, * generates embeddings, and stores in the transcript_chunks table. * * */ import type { Project } from "../types/index.js"; /** * Process a transcript: parse, chunk, embed, and store */ export declare function processTranscript(sessionId: string, transcriptContent: string, project?: Project): Promise<{ success: boolean; chunksCreated: number; error?: string; }>; //# sourceMappingURL=transcript-chunker.d.ts.map