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

ExecuteToolRequest

import type { ExecuteToolRequest } from "https://googleapis.deno.dev/v1/ces:v1.ts";

Request message for ToolService.ExecuteTool.

interface ExecuteToolRequest {
args?: {
[key: string]: any;
}
;
tool?: string;
toolsetTool?: ToolsetTool;
}

§Properties

§
args?: {
[key: string]: any;
}
[src]

Optional. The input parameters and values for the tool in JSON object format.

§
tool?: string
[src]

Optional. The name of the tool to execute. Format: projects/{project}/locations/{location}/apps/{app}/tools/{tool}

§
toolsetTool?: ToolsetTool
[src]

Optional. The toolset tool to execute. Only one tool should match the predicate from the toolset. Otherwise, an error will be returned.