Tela SDK for JavaScript
    Preparing search index...

    Type Alias AsyncCompletionPollingResult<T>

    Result returned when polling for asynchronous execution status.

    type AsyncCompletionPollingResult<T> = {
        id: string;
        outputContent: { content: T };
        rawOutput: Record<string, any>;
        status: ExecutionStatus;
    }

    Type Parameters

    • T

      The type of the output content.

    Index

    Properties

    id: string

    Unique identifier for the execution.

    outputContent: { content: T }

    The output content when execution succeeds.

    Type Declaration

    • content: T

      The actual content result.

    rawOutput: Record<string, any>

    Raw output data from the execution.

    Current status of the execution.