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

GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

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

The Knowledge Connector settings for this page or flow. This includes information such as the attached Knowledge Bases, and the way to execute fulfillment.

interface GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings {
enabled?: boolean;
targetFlow?: string;
targetPage?: string;
}

§Properties

§

Optional. List of related data store connections.

§
enabled?: boolean
[src]

Whether Knowledge Connector is enabled or not.

§
targetFlow?: string
[src]

The target flow to transition to. Format: projects//locations//agents//flows/.

§
targetPage?: string
[src]

The target page to transition to. Format: projects//locations//agents//flows//pages/.

§

The fulfillment to be triggered. When the answers from the Knowledge Connector are selected by Dialogflow, you can utitlize the request scoped parameter $request.knowledge.answers (contains up to the 5 highest confidence answers) and $request.knowledge.questions (contains the corresponding questions) to construct the fulfillment.