UNPKG

@rolme/ytscript

Version:

A CLI tool to download YouTube transcripts and generate summaries

10 lines (9 loc) 336 B
import { AIProvider, SummaryOptions } from '../../types/ai.js'; export declare class ClaudeProvider implements AIProvider { readonly name = "claude"; private apiKey; constructor(apiKey: string); summarize(transcript: string, options?: SummaryOptions): Promise<string>; private buildPrompt; private callClaude; }