Share via


ResponseMCPCallArgumentsDeltaEvent Class

Definition

Emitted when there is a delta (partial update) to the arguments of an MCP tool call.

public class ResponseMCPCallArgumentsDeltaEvent : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEvent, System.ClientModel.Primitives.IJsonModel<Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseMCPCallArgumentsDeltaEvent>, System.ClientModel.Primitives.IPersistableModel<Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseMCPCallArgumentsDeltaEvent>
type ResponseMCPCallArgumentsDeltaEvent = class
    inherit ResponseStreamEvent
    interface IUtf8JsonSerializable
    interface IJsonModel<ResponseMCPCallArgumentsDeltaEvent>
    interface IPersistableModel<ResponseMCPCallArgumentsDeltaEvent>
Public Class ResponseMCPCallArgumentsDeltaEvent
Inherits ResponseStreamEvent
Implements IJsonModel(Of ResponseMCPCallArgumentsDeltaEvent), IPersistableModel(Of ResponseMCPCallArgumentsDeltaEvent)
Inheritance
ResponseMCPCallArgumentsDeltaEvent
Implements

Constructors

Name Description
ResponseMCPCallArgumentsDeltaEvent()

Initializes a new instance of ResponseMCPCallArgumentsDeltaEvent for deserialization.

ResponseMCPCallArgumentsDeltaEvent(Int32, Int32, String, BinaryData)

Initializes a new instance of ResponseMCPCallArgumentsDeltaEvent.

ResponseMCPCallArgumentsDeltaEvent(ResponseStreamEventType, Int32, IDictionary<String,BinaryData>, Int32, String, BinaryData)

Initializes a new instance of ResponseMCPCallArgumentsDeltaEvent.

Properties

Name Description
Delta

The partial update to the arguments for the MCP tool call.

To assign an object to this property use FromObjectAsJson<T>(T, JsonSerializerOptions).

To assign an already formatted json string to this property use FromString(String).

Examples:

  • BinaryData.FromObjectAsJson("foo"): Creates a payload of "foo".
  • BinaryData.FromString("\"foo\""): Creates a payload of "foo".
  • BinaryData.FromObjectAsJson(new { key = "value" }): Creates a payload of { "key": "value" }.
  • BinaryData.FromString("{\"key\": \"value\"}"): Creates a payload of { "key": "value" }.

ItemId

The unique identifier of the MCP tool call item being processed.

OutputIndex

The index of the output item in the response's output array.

SequenceNumber

The sequence number for this event.

(Inherited from ResponseStreamEvent)
Type

Gets or sets the type.

(Inherited from ResponseStreamEvent)

Methods

Name Description
DeserializeResponseMCPCallArgumentsDeltaEvent(JsonElement, ModelReaderWriterOptions)
FromResponse(Response)

Deserializes the model from a raw response.

JsonModelWriteCore(Utf8JsonWriter, ModelReaderWriterOptions)
ToRequestContent()

Convert into a RequestContent.

Explicit Interface Implementations

Name Description
IJsonModel<ResponseMCPCallArgumentsDeltaEvent>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<ResponseMCPCallArgumentsDeltaEvent>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IJsonModel<ResponseStreamEvent>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

(Inherited from ResponseStreamEvent)
IJsonModel<ResponseStreamEvent>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

(Inherited from ResponseStreamEvent)
IPersistableModel<ResponseMCPCallArgumentsDeltaEvent>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<ResponseMCPCallArgumentsDeltaEvent>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<ResponseMCPCallArgumentsDeltaEvent>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

IPersistableModel<ResponseStreamEvent>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

(Inherited from ResponseStreamEvent)
IPersistableModel<ResponseStreamEvent>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

(Inherited from ResponseStreamEvent)
IPersistableModel<ResponseStreamEvent>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

(Inherited from ResponseStreamEvent)
IUtf8JsonSerializable.Write(Utf8JsonWriter)

Applies to