Parameters for the fineTuningList operation.

interface FineTuningListParams {
    headers?: OutgoingHttpHeaders;
    limit?: number;
    projectId?: string;
    spaceId?: string;
    start?: string;
    state?: string;
    tagValue?: string;
    totalCount?: boolean;
    type: string;
}

Properties

headers?: OutgoingHttpHeaders
limit?: number

How many resources should be returned.

projectId?: string

The project that contains the resource. Either space_id or project_id query parameter has to be given.

spaceId?: string

The space that contains the resource. Either space_id or project_id query parameter has to be given.

start?: string

Token required for token-based pagination. This token cannot be determined by end user. It is generated by the service and it is set in the href available in the next field.

state?: string

Filter based on on the job state: queued, running, completed, failed etc.

tagValue?: string

Return only the resources with the given tag value.

totalCount?: boolean

Compute the total count. May have performance impact.

type: string

The type of Fine Tuning training. The type is set to ilab for InstructLab training.