Member Junction
    Preparing search index...

    One JSON-described programmatic whiteboard tool: a name, a model-facing description, and a JSON-schema parameter object. Structurally identical to (mutually assignable with) RealtimeToolDefinition from @memberjunction/ai, re-declared locally so the package stays dependency-light — consumers integrating with the MJ realtime stack can pass WHITEBOARD_TOOL_DEFINITIONS straight into APIs typed against RealtimeToolDefinition[].

    interface WhiteboardToolDefinition {
        Description: string;
        Name: string;
        ParametersSchema: WhiteboardToolJSONObject;
    }
    Index

    Properties

    Description: string

    Human/model-readable description of what the tool does (drives when it gets called).

    Name: string

    The tool's name, used to match tool-call frames back to ApplyWhiteboardAgentTool.

    ParametersSchema: WhiteboardToolJSONObject

    A JSON-schema object describing the tool's parameters.