System details.

interface TextGenResponse {
    created_at: string;
    model_id: string;
    model_version?: string;
    results: TextGenResult[];
    system?: SystemTgDetails;
}

Properties

created_at: string

The time when the response was created.

model_id: string

The id of the model for inference.

model_version?: string

The model version (using semantic versioning) if set.

results: TextGenResult[]

The generated tokens.

Optional details coming from the service and related to the API call or the associated resource.