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