Skip to main content
Version: 1.x

AiConfig

AiConfig

Represents the configuration options for the AI plugin scoped to a specific command.

Signature
interface AiConfig<T extends ToolParameterType = ToolParameterType> {
description?: string;
inputSchema: T;
}

description

property
string

A description of the AI functionality provided by this command. If not given, the command's description will be used.

inputSchema

property
T

A zod schema defining the parameters that the AI command accepts.