Share via


BingCustomSearchAgentTool Constructors

Definition

Overloads

BingCustomSearchAgentTool()

Source:
BingCustomSearchAgentTool.cs

Initializes a new instance of BingCustomSearchAgentTool for deserialization.

public BingCustomSearchAgentTool();
Public Sub New ()

Applies to

BingCustomSearchAgentTool(BingCustomSearchToolParameters)

Source:
BingCustomSearchAgentTool.cs

Initializes a new instance of BingCustomSearchAgentTool.

public BingCustomSearchAgentTool(Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters bingCustomSearchPreview);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchAgentTool : Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchToolParameters -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingCustomSearchAgentTool
Public Sub New (bingCustomSearchPreview As BingCustomSearchToolParameters)

Parameters

bingCustomSearchPreview
BingCustomSearchToolParameters

The bing custom search tool parameters.

Exceptions

bingCustomSearchPreview is null.

Applies to

BingCustomSearchAgentTool(ToolType, IDictionary<String,BinaryData>, BingCustomSearchToolParameters)

Source:
BingCustomSearchAgentTool.cs

Initializes a new instance of BingCustomSearchAgentTool.

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

Parameters

type
ToolType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

bingCustomSearchPreview
BingCustomSearchToolParameters

The bing custom search tool parameters.

Applies to