Interface ChatJobStateEvent

interface ChatJobStateEvent {
    estimatedCost?: string;
    jobID: string;
    modelId?: string;
    queuePosition?: number;
    type: string;
    workerName?: string;
}

Properties

estimatedCost?: string

Estimated cost in the requested token type, stringified BigNumber (present in 'pending' and 'queued' states)

jobID: string
modelId?: string

Model ID (present in 'pending' and 'queued' states)

queuePosition?: number
type: string
workerName?: string