tool_call_chunk#

langchain_core.messages.tool.tool_call_chunk(*, name: str | None = None, args: str | None = None, id: str | None = None, index: int | None = None) ToolCallChunk[source]#

Create a tool call chunk.

Parameters:
  • name (str | None) – The name of the tool to be called.

  • args (str | None) – The arguments to the tool call.

  • id (str | None) – An identifier associated with the tool call.

  • index (int | None) – The index of the tool call in a sequence.

Return type:

ToolCallChunk