> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wisdom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# LLMToolCalls

This page describes the AI function calls made by the assistant, including details for each individual call and their associated arguments.

## LLMToolCalls

<ParamField path="id" type="String!" required>
  Unique identifier for the tool call group.
</ParamField>

<ParamField path="functionCalls" type="[LLMFunctionCall!]!" required>
  Array of individual function calls made by the AI.
</ParamField>

## LLMFunctionCall

<ParamField path="id" type="String!" required>
  Unique identifier for the function call.
</ParamField>

<ParamField path="functionName" type="String!" required>
  Name of the function being called.
</ParamField>

<ParamField path="arguments" type="JSON">
  JSON object containing the function arguments.
</ParamField>

<ParamField path="toolCallId" type="String!" required>
  Identifier linking this call to its result.
</ParamField>

## Related operations

<CardGroup cols={2}>
  <Card title="LLMToolCallResults Schema" icon="check" href="/integrations/graphql-api/objects/llm-tool-call-results">
    Results from tool calls
  </Card>

  <Card title="DeltaElement Schema" icon="cube" href="/integrations/graphql-api/objects/delta-element">
    Container for tool calls
  </Card>
</CardGroup>
