Interface Run

interface Run {
    assistant_id: string;
    created_at: string;
    metadata: Metadata;
    multitask_strategy: Optional<MultitaskStrategy>;
    run_id: string;
    status: RunStatus;
    thread_id: string;
    updated_at: string;
}

Properties

assistant_id: string

The assistant that wwas used for this run

created_at: string

The time the run was created

metadata: Metadata

Run metadata

multitask_strategy: Optional<MultitaskStrategy>

Strategy to handle concurrent runs on the same thread

run_id: string

The ID of the run

status: RunStatus

The status of the run.

thread_id: string

The ID of the thread

updated_at: string

The last time the run was updated