ResponsesStructuredOutputDefinition Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ResponsesStructuredOutputDefinition.
public ResponsesStructuredOutputDefinition(string name, string description, System.Collections.Generic.IDictionary<string,BinaryData> schema, bool? isStrict);
new Azure.AI.Extensions.OpenAI.ResponsesStructuredOutputDefinition : string * string * System.Collections.Generic.IDictionary<string, BinaryData> * Nullable<bool> -> Azure.AI.Extensions.OpenAI.ResponsesStructuredOutputDefinition
Public Sub New (name As String, description As String, schema As IDictionary(Of String, BinaryData), isStrict As Nullable(Of Boolean))
Parameters
- name
- String
The name of the structured output.
- description
- String
A description of the output to emit. Used by the model to determine when to emit the output.
- schema
- IDictionary<String,BinaryData>
The JSON schema for the structured output.
Exceptions
name, description or schema is null.