GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata
import type { GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";
The metadata of Datasets that contain Text Prompt data.
interface GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata {
candidateCount?: bigint;
gcsUri?: string;
groundingConfig?: GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig;
hasPromptVariable?: boolean;
logprobs?: boolean;
maxOutputTokens?: bigint;
note?: string;
promptApiSchema?: GoogleCloudAiplatformV1SchemaPromptApiSchema;
promptType?: string;
seedEnabled?: boolean;
seedValue?: bigint;
stopSequences?: string[];
systemInstruction?: string;
systemInstructionGcsUri?: string;
temperature?: number;
text?: string;
topK?: bigint;
topP?: number;
}§Properties
§
groundingConfig?: GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig
[src]Grounding checking configuration.
§
logprobs?: boolean
[src]Whether or not the user has enabled logit probabilities in the model parameters.
§
maxOutputTokens?: bigint
[src]Value of the maximum number of tokens generated set when the dataset was saved.
§
promptApiSchema?: GoogleCloudAiplatformV1SchemaPromptApiSchema
[src]The API schema of the prompt to support both UI and SDK usages.
§
seedEnabled?: boolean
[src]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.
§
systemInstructionGcsUri?: string
[src]The Google Cloud Storage URI that stores the system instruction, starting with gs://.
§
temperature?: number
[src]Temperature value used for sampling set when the dataset was saved. This value is used to tune the degree of randomness.