Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1EventMetadata

Metadata relating to a LLM response event.

Inheritance
object
GoogleCloudAiplatformV1beta1EventMetadata
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1EventMetadata : IDirectResponseSchema

Properties

Branch

Optional. The branch of the event. The format is like agent_1.agent_2.agent_3, where agent_1 is the parent of agent_2, and agent_2 is the parent of agent_3. Branch is used when multiple child agents shouldn't see their siblings' conversation history.

Declaration
[JsonProperty("branch")]
public virtual string Branch { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

GroundingMetadata

Optional. Metadata returned to client when grounding is enabled.

Declaration
[JsonProperty("groundingMetadata")]
public virtual GoogleCloudAiplatformV1beta1GroundingMetadata GroundingMetadata { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1beta1GroundingMetadata

Interrupted

Optional. Flag indicating that LLM was interrupted when generating the content. Usually it's due to user interruption during a bidi streaming.

Declaration
[JsonProperty("interrupted")]
public virtual bool? Interrupted { get; set; }
Property Value
Type Description
bool?

LongRunningToolIds

Optional. Set of ids of the long running function calls. Agent client will know from this field about which function call is long running. Only valid for function call event.

Declaration
[JsonProperty("longRunningToolIds")]
public virtual IList<string> LongRunningToolIds { get; set; }
Property Value
Type Description
IList<string>

Partial

Optional. Indicates whether the text content is part of a unfinished text stream. Only used for streaming mode and when the content is plain text.

Declaration
[JsonProperty("partial")]
public virtual bool? Partial { get; set; }
Property Value
Type Description
bool?

TurnComplete

Optional. Indicates whether the response from the model is complete. Only used for streaming mode.

Declaration
[JsonProperty("turnComplete")]
public virtual bool? TurnComplete { get; set; }
Property Value
Type Description
bool?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX