@karmaniverous/jeeves
    Preparing search index...

    Interface ToolResult

    Result shape returned by tool executions.

    interface ToolResult {
        content: { text: string; type: string }[];
        isError?: boolean;
    }
    Index

    Properties

    Properties

    content: { text: string; type: string }[]

    Content blocks — typically a single text block.

    Type Declaration

    • text: string

      Text content of the block.

    • type: string

      MIME type identifier (e.g. "text").

    isError?: boolean

    Whether this result represents an error.