Member Junction
    Preparing search index...

    A server-executed channel tool contributed by a session's server-side channels, as the bridge engine forwards it to the realtime runner. Structurally a RealtimeToolDefinition (@memberjunction/ai) — re-declared here as the minimal shape so the bridge-server engine can surface contributed tools on import('./index').ActiveBridgeSession without depending on the AI core/agents packages for the type.

    interface BridgeChannelToolDefinition {
        Description: string;
        Name: string;
        ParametersSchema: Record<string, unknown>;
    }
    Index

    Properties

    Description: string

    A natural-language description the model reads to decide when to call the tool.

    Name: string

    The model-visible tool name (already namespaced by the channel's ToolNamePrefix).

    ParametersSchema: Record<string, unknown>

    The tool's JSON-schema parameter definition (an object schema).