Class GoogleCloudAiplatformV1Part
A datatype containing media that is part of a multi-part Content
message. A Part
consists of data which has
an associated datatype. A Part
can only contain one of the accepted types in Part.data
. A Part
must have a
fixed IANA MIME type identifying the type and subtype of the media if inline_data
or file_data
field is
filled with raw bytes.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1Part : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FileData
Optional. URI based data.
Declaration
[JsonProperty("fileData")]
public virtual GoogleCloudAiplatformV1FileData FileData { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1FileData |
FunctionCall
Optional. A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] with the parameters and their values.
Declaration
[JsonProperty("functionCall")]
public virtual GoogleCloudAiplatformV1FunctionCall FunctionCall { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1FunctionCall |
FunctionResponse
Optional. The result output of a [FunctionCall] that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing any output from the function call. It is used as context to the model.
Declaration
[JsonProperty("functionResponse")]
public virtual GoogleCloudAiplatformV1FunctionResponse FunctionResponse { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1FunctionResponse |
InlineData
Optional. Inlined bytes data.
Declaration
[JsonProperty("inlineData")]
public virtual GoogleCloudAiplatformV1Blob InlineData { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1Blob |
Text
Optional. Text part (can be code).
Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type | Description |
---|---|
string |
VideoMetadata
Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data.
Declaration
[JsonProperty("videoMetadata")]
public virtual GoogleCloudAiplatformV1VideoMetadata VideoMetadata { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1VideoMetadata |