Tool
import type { Tool } from "https://googleapis.deno.dev/v1/connectors:v2.ts";
Message representing a single tool.
interface Tool {
dependsOn?: string[];
description?: string;
inputSchema?: JsonSchema;
name?: string;
outputSchema?: JsonSchema;
}§Properties
§
inputSchema?: JsonSchema
[src]JSON schema for the input parameters of the tool.
§
outputSchema?: JsonSchema
[src]JSON schema for the output of the tool.