Interface ProgressField

interface ProgressField {
    actions?: ChatItemButton[];
    status?: Status | "default";
    text?: string;
    value?: number;
    valueText?: string;
}

Properties

actions?: ChatItemButton[]

Prompt input progress actions

status?: Status | "default"

Prompt input progress status

text?: string

Prompt input progress text

value?: number

Prompt input progress value to show the inner bar state, -1 for infinite

valueText?: string

Prompt input progress text for the current state (ie: 15%, 2min remaining)