View Source ExOpenAI.Components.ResponseMCPCallInProgressEvent (ex_openai.ex v2.0.0-beta2)

Emitted when an MCP tool call is in progress.

Fields

  • :item_id - required - String.t()
    The unique identifier of the MCP tool call item being processed.

  • :output_index - required - integer()
    The index of the output item in the response's output array.

  • :sequence_number - required - integer()
    The sequence number of this event.

  • :type - required - :"response.mcp_call.in_progress"
    The type of the event. Always 'response.mcp_call.in_progress'.
    Allowed values: "response.mcp_call.in_progress"

Summary

Types

@type t() :: %ExOpenAI.Components.ResponseMCPCallInProgressEvent{
  item_id: String.t(),
  output_index: integer(),
  sequence_number: integer(),
  type: :"response.mcp_call.in_progress"
}