Share via


BingCustomSearchToolParameters Constructors

Definition

Overloads

BingCustomSearchToolParameters()

Source:
BingCustomSearchToolParameters.cs

Initializes a new instance of BingCustomSearchToolParameters for deserialization.

public BingCustomSearchToolParameters();
Public Sub New ()

Applies to

BingCustomSearchToolParameters(IEnumerable<BingCustomSearchConfiguration>)

Source:
BingCustomSearchToolParameters.cs

Initializes a new instance of BingCustomSearchToolParameters.

public BingCustomSearchToolParameters(System.Collections.Generic.IEnumerable<Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchConfiguration> searchConfigurations);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters : seq<Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchConfiguration> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters
Public Sub New (searchConfigurations As IEnumerable(Of BingCustomSearchConfiguration))

Parameters

searchConfigurations
IEnumerable<BingCustomSearchConfiguration>

The project connections attached to this tool. There can be a maximum of 1 connection resource attached to the tool.

Exceptions

searchConfigurations is null.

Applies to

BingCustomSearchToolParameters(IList<BingCustomSearchConfiguration>, IDictionary<String,BinaryData>)

Source:
BingCustomSearchToolParameters.cs

Initializes a new instance of BingCustomSearchToolParameters.

public BingCustomSearchToolParameters(System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchConfiguration> searchConfigurations, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters : System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchConfiguration> * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters
Public Sub New (searchConfigurations As IList(Of BingCustomSearchConfiguration), serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

searchConfigurations
IList<BingCustomSearchConfiguration>

The project connections attached to this tool. There can be a maximum of 1 connection resource attached to the tool.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to