Show / Hide Table of Contents

Class GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata

The metadata of Datasets that contain Text Prompt data.

Inheritance
object
GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata
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.v1.Data
Assembly: Google.Apis.Aiplatform.v1.dll
Syntax
public class GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata : IDirectResponseSchema

Properties

CandidateCount

Number of candidates.

Declaration
[JsonProperty("candidateCount")]
public virtual long? CandidateCount { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

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

GcsUri

The Google Cloud Storage URI that stores the prompt data.

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

GroundingConfig

Grounding checking configuration.

Declaration
[JsonProperty("groundingConfig")]
public virtual GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig GroundingConfig { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig

HasPromptVariable

Whether the prompt dataset has prompt variable.

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

Logprobs

Whether or not the user has enabled logit probabilities in the model parameters.

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

MaxOutputTokens

Value of the maximum number of tokens generated set when the dataset was saved.

Declaration
[JsonProperty("maxOutputTokens")]
public virtual long? MaxOutputTokens { get; set; }
Property Value
Type Description
long?

Note

User-created prompt note. Note size limit is 2KB.

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

PromptApiSchema

The API schema of the prompt to support both UI and SDK usages.

Declaration
[JsonProperty("promptApiSchema")]
public virtual GoogleCloudAiplatformV1SchemaPromptApiSchema PromptApiSchema { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1SchemaPromptApiSchema

PromptType

Type of the prompt dataset.

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

SeedEnabled

Seeding enables model to return a deterministic response on a best effort basis. Determinism isn't guaranteed. This field determines whether or not seeding is enabled.

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

SeedValue

The actual value of the seed.

Declaration
[JsonProperty("seedValue")]
public virtual long? SeedValue { get; set; }
Property Value
Type Description
long?

StopSequences

Customized stop sequences.

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

SystemInstruction

The content of the prompt dataset system instruction.

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

SystemInstructionGcsUri

The Google Cloud Storage URI that stores the system instruction, starting with gs://.

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

Temperature

Temperature value used for sampling set when the dataset was saved. This value is used to tune the degree of randomness.

Declaration
[JsonProperty("temperature")]
public virtual float? Temperature { get; set; }
Property Value
Type Description
float?

Text

The content of the prompt dataset.

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

TopK

Top K value set when the dataset was saved. This value determines how many candidates with highest probability from the vocab would be selected for each decoding step.

Declaration
[JsonProperty("topK")]
public virtual long? TopK { get; set; }
Property Value
Type Description
long?

TopP

Top P value set when the dataset was saved. Given topK tokens for decoding, top candidates will be selected until the sum of their probabilities is topP.

Declaration
[JsonProperty("topP")]
public virtual float? TopP { get; set; }
Property Value
Type Description
float?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX