GoogleCloudDialogflowCxV3Playbook
import type { GoogleCloudDialogflowCxV3Playbook } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";
Playbook is the basic building block to instruct the LLM how to execute a certain task. A playbook consists of a goal to accomplish, an optional list of step by step instructions (the step instruction may refers to name of the custom or default plugin tools to use) to perform the task, a list of contextual input data to be passed in at the beginning of the invoked, and a list of output parameters to store the playbook result.
§Properties
Required. The human-readable name of the playbook, unique within an agent.
Required. High level description of the goal the playbook intend to accomplish. A goal should be concise since it's visible to other playbooks that may reference this playbook.
Optional. A list of registered handlers to execuate based on the specified triggers.
Instruction to accomplish target goal.
Optional. Llm model settings for the playbook.
The unique identifier of the playbook. Format:
projects//locations//agents//playbooks/
.
Output only. The resource name of flows referenced by the current playbook in the instructions.
Output only. The resource name of other playbooks referenced by the current playbook in the instructions.
Optional. The resource name of tools referenced by the current playbook in the instructions. If not provided explicitly, they are will be implied using the tool being referenced in goal and steps.