com.google.cloud.dialogflow.cx.v3beta1.GenerativeSettingsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/cx/v3beta1/generative_settings.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.dialogflow.cx.v3beta1;
public interface GenerativeSettingsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.GenerativeSettings)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/generativeSettings`.
*
*
* string name = 5;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/generativeSettings`.
*
*
* string name = 5;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Settings for Generative Fallback.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.FallbackSettings fallback_settings = 1;
*
*
* @return Whether the fallbackSettings field is set.
*/
boolean hasFallbackSettings();
/**
*
*
*
* Settings for Generative Fallback.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.FallbackSettings fallback_settings = 1;
*
*
* @return The fallbackSettings.
*/
com.google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.FallbackSettings getFallbackSettings();
/**
*
*
*
* Settings for Generative Fallback.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.FallbackSettings fallback_settings = 1;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.FallbackSettingsOrBuilder
getFallbackSettingsOrBuilder();
/**
*
*
*
* Settings for Generative Safety.
*
*
* .google.cloud.dialogflow.cx.v3beta1.SafetySettings generative_safety_settings = 3;
*
* @return Whether the generativeSafetySettings field is set.
*/
boolean hasGenerativeSafetySettings();
/**
*
*
*
* Settings for Generative Safety.
*
*
* .google.cloud.dialogflow.cx.v3beta1.SafetySettings generative_safety_settings = 3;
*
* @return The generativeSafetySettings.
*/
com.google.cloud.dialogflow.cx.v3beta1.SafetySettings getGenerativeSafetySettings();
/**
*
*
*
* Settings for Generative Safety.
*
*
* .google.cloud.dialogflow.cx.v3beta1.SafetySettings generative_safety_settings = 3;
*/
com.google.cloud.dialogflow.cx.v3beta1.SafetySettingsOrBuilder
getGenerativeSafetySettingsOrBuilder();
/**
*
*
*
* Settings for knowledge connector.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.KnowledgeConnectorSettings knowledge_connector_settings = 7;
*
*
* @return Whether the knowledgeConnectorSettings field is set.
*/
boolean hasKnowledgeConnectorSettings();
/**
*
*
*
* Settings for knowledge connector.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.KnowledgeConnectorSettings knowledge_connector_settings = 7;
*
*
* @return The knowledgeConnectorSettings.
*/
com.google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.KnowledgeConnectorSettings
getKnowledgeConnectorSettings();
/**
*
*
*
* Settings for knowledge connector.
*
*
*
* .google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.KnowledgeConnectorSettings knowledge_connector_settings = 7;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.GenerativeSettings.KnowledgeConnectorSettingsOrBuilder
getKnowledgeConnectorSettingsOrBuilder();
/**
*
*
*
* Language for this settings.
*
*
* string language_code = 4;
*
* @return The languageCode.
*/
java.lang.String getLanguageCode();
/**
*
*
*
* Language for this settings.
*
*
* string language_code = 4;
*
* @return The bytes for languageCode.
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
/**
*
*
*
* LLM model settings.
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 8;
*
* @return Whether the llmModelSettings field is set.
*/
boolean hasLlmModelSettings();
/**
*
*
*
* LLM model settings.
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 8;
*
* @return The llmModelSettings.
*/
com.google.cloud.dialogflow.cx.v3beta1.LlmModelSettings getLlmModelSettings();
/**
*
*
*
* LLM model settings.
*
*
* .google.cloud.dialogflow.cx.v3beta1.LlmModelSettings llm_model_settings = 8;
*/
com.google.cloud.dialogflow.cx.v3beta1.LlmModelSettingsOrBuilder getLlmModelSettingsOrBuilder();
}