Class ModelSettings
Model settings contains various configurations for the LLM model.
Implements
Inherited Members
Namespace: Google.Apis.CustomerEngagementSuite.v1.Data
Assembly: Google.Apis.CustomerEngagementSuite.v1.dll
Syntax
public class ModelSettings : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Model
Optional. The LLM model that the agent should use. If not set, the agent will inherit the model from its parent agent.
Declaration
[JsonProperty("model")]
public virtual string Model { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Temperature
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.
Declaration
[JsonProperty("temperature")]
public virtual double? Temperature { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |