Member Junction
    Preparing search index...

    Summary of a client tool execution result, used in conversation messages.

    interface ClientToolResultSummary {
        ErrorMessage?: string;
        Result?: unknown;
        Success: boolean;
        ToolName: string;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if the tool failed

    Result?: unknown

    Result data from the tool

    Success: boolean

    Whether the execution succeeded

    ToolName: string

    Name of the tool that was executed