Interface LanguageModelToolConfirmationMessages

When this is returned in PreparedToolInvocation, the user will be asked to confirm before running the tool. These messages will be shown with buttons that say "Continue" and "Cancel".

Stubbed

interface LanguageModelToolConfirmationMessages {
    message: string | MarkdownString;
    title: string;
}

Properties

Properties

message: string | MarkdownString

The body of the confirmation message.

title: string

The title of the confirmation message.