Class ConversationTurn
All information about a single turn in the conversation.
Implements
Inherited Members
Namespace: Google.Apis.CustomerEngagementSuite.v1.Data
Assembly: Google.Apis.CustomerEngagementSuite.v1.dll
Syntax
public class ConversationTurn : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Messages
Optional. List of messages in the conversation turn, including user input, agent responses and intermediate events during the processing.
Declaration
[JsonProperty("messages")]
public virtual IList<Message> Messages { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Message> |
ResolvedDeveloperInstruction
Output only. The full dynamically resolved developer instruction generated from templates. This field is only populated on-demand when requested during history retrieval. It is not persisted.
Declaration
[JsonProperty("resolvedDeveloperInstruction")]
public virtual string ResolvedDeveloperInstruction { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RootSpan
Optional. The root span of the action processing.
Declaration
[JsonProperty("rootSpan")]
public virtual Span RootSpan { get; set; }
Property Value
| Type | Description |
|---|---|
| Span |
TemplateAttributes
Optional. Variables or configurations referenced by the template engine during dynamic prompt generation. This allows reconstructing the exact prompt sent to the model for this turn.
Declaration
[JsonProperty("templateAttributes")]
public virtual IDictionary<string, object> TemplateAttributes { get; set; }
Property Value
| Type | Description |
|---|---|
| IDictionary<string, object> |
UserIntendedText
Optional. The intended ground-truth text from the Simulated Caller (Polysynth). Only populated when word error rate metrics are enabled.
Declaration
[JsonProperty("userIntendedText")]
public virtual string UserIntendedText { get; set; }
Property Value
| Type | Description |
|---|---|
| string |