baselineResponseFieldName = $baselineResponseFieldName; } /** * @return string */ public function getBaselineResponseFieldName() { return $this->baselineResponseFieldName; } /** * Optional. The field name of the candidate response. * * @param string $candidateResponseFieldName */ public function setCandidateResponseFieldName($candidateResponseFieldName) { $this->candidateResponseFieldName = $candidateResponseFieldName; } /** * @return string */ public function getCandidateResponseFieldName() { return $this->candidateResponseFieldName; } /** * Optional. CustomOutputFormatConfig allows customization of metric output. * When this config is set, the default output is replaced with the raw output * string. If a custom format is chosen, the `pairwise_choice` and * `explanation` fields in the corresponding metric result will be empty. * * @param GoogleCloudAiplatformV1CustomOutputFormatConfig $customOutputFormatConfig */ public function setCustomOutputFormatConfig(GoogleCloudAiplatformV1CustomOutputFormatConfig $customOutputFormatConfig) { $this->customOutputFormatConfig = $customOutputFormatConfig; } /** * @return GoogleCloudAiplatformV1CustomOutputFormatConfig */ public function getCustomOutputFormatConfig() { return $this->customOutputFormatConfig; } /** * Required. Metric prompt template for pairwise metric. * * @param string $metricPromptTemplate */ public function setMetricPromptTemplate($metricPromptTemplate) { $this->metricPromptTemplate = $metricPromptTemplate; } /** * @return string */ public function getMetricPromptTemplate() { return $this->metricPromptTemplate; } /** * Optional. System instructions for pairwise metric. * * @param string $systemInstruction */ public function setSystemInstruction($systemInstruction) { $this->systemInstruction = $systemInstruction; } /** * @return string */ public function getSystemInstruction() { return $this->systemInstruction; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1PairwiseMetricSpec::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1PairwiseMetricSpec');