Tela SDK for JavaScript
    Preparing search index...

    Type Alias WorkflowExecutionSyncResult<TOutput>

    Result returned when synchronously executing a workflow.

    type WorkflowExecutionSyncResult<TOutput> = {
        completedAt: string;
        id: string;
        output: { id: string; name: string; output: TOutput; status: string };
        promptVersionId: string;
        startedAt: string;
        status: string;
    }

    Type Parameters

    • TOutput

      The type of the output content.

    Index

    Properties

    completedAt: string
    id: string
    output: { id: string; name: string; output: TOutput; status: string }
    promptVersionId: string
    startedAt: string
    status: string