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

GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings

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

Generator settings used by the LLM to generate a text response.

interface GoogleCloudDialogflowCxV3FulfillmentGeneratorSettings {
generator?: string;
inputParameters?: {
[key: string]: string;
}
;
outputParameter?: string;
}

§Properties

§
generator?: string
[src]

Required. The generator to call. Format: projects//locations//agents//generators/.

§
inputParameters?: {
[key: string]: string;
}
[src]

Map from placeholder parameter in the Generator to corresponding session parameters. By default, Dialogflow uses the session parameter with the same name to fill in the generator template. e.g. If there is a placeholder parameter city in the Generator, Dialogflow default to fill in the $city with $session.params.city. However, you may choose to fill $city with $session.params.desination-city. - Map key: parameter ID - Map value: session parameter name

§
outputParameter?: string
[src]

Required. Output parameter which should contain the generator response.