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

GoogleCloudDialogflowCxV3Agent

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

Agents are best described as Natural Language Understanding (NLU) modules that transform user requests into actionable data. You can include agents in your app, product, or service to determine user intent and respond to the user in a natural way. After you create an agent, you can add Intents, Entity Types, Flows, Fulfillments, Webhooks, TransitionRouteGroups and so on to manage the conversation flows.

interface GoogleCloudDialogflowCxV3Agent {
avatarUri?: string;
defaultLanguageCode?: string;
description?: string;
displayName?: string;
enableMultiLanguageTraining?: boolean;
enableSpellCorrection?: boolean;
enableStackdriverLogging?: boolean;
locked?: boolean;
name?: string;
securitySettings?: string;
startFlow?: string;
supportedLanguageCodes?: string[];
timeZone?: string;
}

§Properties

§

Hierarchical advanced settings for this agent. The settings exposed at the lower level overrides the settings exposed at the higher level.

§

Optional. Answer feedback collection settings.

§
avatarUri?: string
[src]

The URI of the agent's avatar. Avatars are used throughout the Dialogflow console and in the self-hosted Web Demo integration.

§
defaultLanguageCode?: string
[src]

Required. Immutable. The default language of the agent as a language tag. See Language Support for a list of the currently supported language codes. This field cannot be set by the Agents.UpdateAgent method.

§
description?: string
[src]

The description of the agent. The maximum length is 500 characters. If exceeded, the request is rejected.

§
displayName?: string
[src]

Required. The human-readable name of the agent, unique within the location.

§
enableMultiLanguageTraining?: boolean
[src]

Optional. Enable training multi-lingual models for this agent. These models will be trained on all the languages supported by the agent.

§
enableSpellCorrection?: boolean
[src]

Indicates if automatic spell correction is enabled in detect intent requests.

§
enableStackdriverLogging?: boolean
[src]

Indicates if stackdriver logging is enabled for the agent. Please use agent.advanced_settings instead.

§

Gen App Builder-related agent-level settings.

§

Git integration settings for this agent.

§
locked?: boolean
[src]

Indicates whether the agent is locked for changes. If the agent is locked, modifications to the agent will be rejected except for RestoreAgent.

§
name?: string
[src]

The unique identifier of the agent. Required for the Agents.UpdateAgent method. Agents.CreateAgent populates the name automatically. Format: projects//locations//agents/.

§

Optional. Settings for end user personalization.

§
securitySettings?: string
[src]

Name of the SecuritySettings reference for the agent. Format: projects//locations//securitySettings/.

§

Speech recognition related settings.

§
startFlow?: string
[src]

Immutable. Name of the start flow in this agent. A start flow will be automatically created when the agent is created, and can only be deleted by deleting the agent. Format: projects//locations//agents//flows/.

§
supportedLanguageCodes?: string[]
[src]

The list of all languages supported by the agent (except for the default_language_code).

§

Settings on instructing the speech synthesizer on how to generate the output audio content.

§
timeZone?: string
[src]

Required. The time zone of the agent from the time zone database, e.g., America/New_York, Europe/Paris.