Interface ReinforcementTuningRewardInfo

The reward info for a reward function.

interface ReinforcementTuningRewardInfo {
    reward?: number;
    userRequestedAuxInfo?: string;
}

Properties

reward?: number

Output only. The calculated reward for the reward function.

userRequestedAuxInfo?: string

Output only. The user-requested auxiliary info for the reward function. This field is set only if the Cloud Run reward function configured by user returns a "user_requested_aux_info". Refer to ReinforcementTuningCloudRunRewardScorer for more details.