Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDialogflowV2ConversationModel

import type { GoogleCloudDialogflowV2ConversationModel } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Represents a conversation model.

interface GoogleCloudDialogflowV2ConversationModel {
readonly createTime?: Date;
displayName?: string;
languageCode?: string;
name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "UNDEPLOYED"
| "DEPLOYING"
| "DEPLOYED"
| "UNDEPLOYING"
| "DELETING"
| "FAILED"
| "PENDING";
}

§Properties

§

Metadata for article suggestion models.

§
readonly createTime?: Date
[src]

Output only. Creation time of this model.

§

Required. Datasets used to create model.

§
displayName?: string
[src]

Required. The display name of the model. At most 64 bytes long.

§
languageCode?: string
[src]

Language code for the conversation model. If not specified, the language is en-US. Language at ConversationModel should be set for all non en-us languages. This should be a BCP-47 language tag. Example: "en-US".

§
name?: string
[src]

ConversationModel resource name. Format: projects//conversationModels/

§

Metadata for smart reply models.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "UNDEPLOYED" | "DEPLOYING" | "DEPLOYED" | "UNDEPLOYING" | "DELETING" | "FAILED" | "PENDING"
[src]

Output only. State of the model. A model can only serve prediction requests after it gets deployed.