[Go to site: main page, start]

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

    Interface ResumabilityConfig

    The configuration of resumability for an application or runner.

    The "resumability" in ADK refers to the ability to:

    1. pause an invocation upon a long-running function call.
    2. resume an invocation from the last event, if it's paused or failed midway through.
    interface ResumabilityConfig {
        isResumable: boolean;
    }

    Properties

    isResumable: boolean

    Whether the app/runner supports agent resumption. If enabled, resumption routing based on matching function responses will be active.