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

Returned when the model-generated function call arguments are updated.

Fields

  • :call_id - required - String.t()
    The ID of the function call.

  • :delta - required - String.t()
    The arguments delta as a JSON string.

  • :event_id - required - String.t()
    The unique ID of the server event.

  • :item_id - required - String.t()
    The ID of the function call item.

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

  • :response_id - required - String.t()
    The ID of the response.

  • :type - required - :"response.function_call_arguments.delta"
    The event type, must be response.function_call_arguments.delta.
    Allowed values: "response.function_call_arguments.delta"

Summary

Types

@type t() ::
  %ExOpenAI.Components.RealtimeBetaServerEventResponseFunctionCallArgumentsDelta{
    call_id: String.t(),
    delta: String.t(),
    event_id: String.t(),
    item_id: String.t(),
    output_index: integer(),
    response_id: String.t(),
    type: :"response.function_call_arguments.delta"
  }