langchain.js
    Preparing search index...
    interface ServerToolCallChunk<TName extends string = string> {
        args?: string;
        id?: string;
        name?: TName;
        type: "server_tool_call_chunk";
        [key: string]: unknown;
    }

    Type Parameters

    • TName extends string = string

    Hierarchy

    • BaseContentBlock
      • ServerToolCallChunk

    Indexable

    • [key: string]: unknown

      Arbitrary properties

    Index

    Properties

    Properties

    args?: string

    The arguments to the tool call

    id?: string

    Content block identifier, which can be either

    • generated by the provider (e.g., a provider-specific ID)
    • generated by LangChain upon creation (a uuid prefixed with 'lc-')
    name?: TName

    The name of the tool being called

    type: "server_tool_call_chunk"

    Type of the content block