ADK for TypeScript: API Reference
    Preparing search index...

    Interface LlmSummarizerOptions

    Options for constructing an LlmSummarizer.

    interface LlmSummarizerOptions {
        llm: BaseLlm;
        prompt?: string;
    }

    Properties

    llm: BaseLlm

    The LLM instance used to generate the summary.

    prompt?: string

    Optional system prompt prepended to the formatted events. Defaults to a built-in summarization prompt when omitted.