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

GoogleCloudDialogflowCxV3NluSettings

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

Settings related to NLU.

interface GoogleCloudDialogflowCxV3NluSettings {
classificationThreshold?: number;
modelTrainingMode?: "MODEL_TRAINING_MODE_UNSPECIFIED" | "MODEL_TRAINING_MODE_AUTOMATIC" | "MODEL_TRAINING_MODE_MANUAL";
modelType?: "MODEL_TYPE_UNSPECIFIED" | "MODEL_TYPE_STANDARD" | "MODEL_TYPE_ADVANCED";
}

§Properties

§
classificationThreshold?: number
[src]

To filter out false positive results and still get variety in matched natural language inputs for your agent, you can tune the machine learning classification threshold. If the returned score value is less than the threshold value, then a no-match event will be triggered. The score values range from 0.0 (completely uncertain) to 1.0 (completely certain). If set to 0.0, the default of 0.3 is used.

§
modelTrainingMode?: "MODEL_TRAINING_MODE_UNSPECIFIED" | "MODEL_TRAINING_MODE_AUTOMATIC" | "MODEL_TRAINING_MODE_MANUAL"
[src]

Indicates NLU model training mode.

§
modelType?: "MODEL_TYPE_UNSPECIFIED" | "MODEL_TYPE_STANDARD" | "MODEL_TYPE_ADVANCED"
[src]

Indicates the type of NLU model.