Class ModelSettings (0.1.0)

public final class ModelSettings extends GeneratedMessage implements ModelSettingsOrBuilder

Model settings contains various configurations for the LLM model.

Protobuf type google.cloud.ces.v1.ModelSettings

Static Fields

MODEL_FIELD_NUMBER

public static final int MODEL_FIELD_NUMBER
Field Value
Type Description
int

TEMPERATURE_FIELD_NUMBER

public static final int TEMPERATURE_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static ModelSettings getDefaultInstance()
Returns
Type Description
ModelSettings

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static ModelSettings.Builder newBuilder()
Returns
Type Description
ModelSettings.Builder

newBuilder(ModelSettings prototype)

public static ModelSettings.Builder newBuilder(ModelSettings prototype)
Parameter
Name Description
prototype ModelSettings
Returns
Type Description
ModelSettings.Builder

parseDelimitedFrom(InputStream input)

public static ModelSettings parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static ModelSettings parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static ModelSettings parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static ModelSettings parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static ModelSettings parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static ModelSettings parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static ModelSettings parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
ModelSettings
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<ModelSettings> parser()
Returns
Type Description
Parser<ModelSettings>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getDefaultInstanceForType()

public ModelSettings getDefaultInstanceForType()
Returns
Type Description
ModelSettings

getModel()

public String getModel()

Optional. The LLM model that the agent should use. If not set, the agent will inherit the model from its parent agent.

string model = 1 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
String

The model.

getModelBytes()

public ByteString getModelBytes()

Optional. The LLM model that the agent should use. If not set, the agent will inherit the model from its parent agent.

string model = 1 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
ByteString

The bytes for model.

getParserForType()

public Parser<ModelSettings> getParserForType()
Returns
Type Description
Parser<ModelSettings>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

getTemperature()

public double getTemperature()

Optional. If set, this temperature will be used for the LLM model. Temperature controls the randomness of the model's responses. Lower temperatures produce responses that are more predictable. Higher temperatures produce responses that are more creative.

optional double temperature = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
double

The temperature.

hasTemperature()

public boolean hasTemperature()

Optional. If set, this temperature will be used for the LLM model. Temperature controls the randomness of the model's responses. Lower temperatures produce responses that are more predictable. Higher temperatures produce responses that are more creative.

optional double temperature = 2 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

Whether the temperature field is set.

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public ModelSettings.Builder newBuilderForType()
Returns
Type Description
ModelSettings.Builder

newBuilderForType(AbstractMessage.BuilderParent parent)

protected ModelSettings.Builder newBuilderForType(AbstractMessage.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
ModelSettings.Builder
Overrides

toBuilder()

public ModelSettings.Builder toBuilder()
Returns
Type Description
ModelSettings.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException