RequiredAction Class

Definition

An abstract representation of a required action for an assistant thread run to continue. Please note RequiredAction is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include SubmitToolOutputsAction.

[System.ClientModel.Primitives.PersistableModelProxy(typeof(Azure.AI.OpenAI.Assistants.UnknownRequiredAction))]
public abstract class RequiredAction : System.ClientModel.Primitives.IJsonModel<Azure.AI.OpenAI.Assistants.RequiredAction>, System.ClientModel.Primitives.IPersistableModel<Azure.AI.OpenAI.Assistants.RequiredAction>
[<System.ClientModel.Primitives.PersistableModelProxy(typeof(Azure.AI.OpenAI.Assistants.UnknownRequiredAction))>]
type RequiredAction = class
    interface IJsonModel<RequiredAction>
    interface IPersistableModel<RequiredAction>
Public MustInherit Class RequiredAction
Implements IJsonModel(Of RequiredAction), IPersistableModel(Of RequiredAction)
Inheritance
RequiredAction
Derived
Attributes
Implements

Constructors

RequiredAction()

Initializes a new instance of RequiredAction.

Explicit Interface Implementations

IJsonModel<RequiredAction>.Create(Utf8JsonReader, ModelReaderWriterOptions)

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

IJsonModel<RequiredAction>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<RequiredAction>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<RequiredAction>.GetFormatFromOptions(ModelReaderWriterOptions)

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

IPersistableModel<RequiredAction>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to