Member Junction
    Preparing search index...

    The result of executing one server-channel tool, as returned to the runner. Structurally the ServerChannelToolResult / ToolExecutionResult shape — minimal so the engine stays decoupled from the AI packages.

    interface BridgeChannelToolResult {
        Output: string;
        Success: boolean;
    }
    Index

    Properties

    Properties

    Output: string

    The textual outcome fed back to the model (a description on success, the error on failure).

    Success: boolean

    Whether the tool executed successfully.