你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BingGroundingAgentTool Constructors

Definition

Overloads

BingGroundingAgentTool()

Source:
BingGroundingAgentTool.cs

Initializes a new instance of BingGroundingAgentTool for deserialization.

public BingGroundingAgentTool();
Public Sub New ()

Applies to

BingGroundingAgentTool(BingGroundingSearchToolParameters)

Source:
BingGroundingAgentTool.cs

Initializes a new instance of BingGroundingAgentTool.

public BingGroundingAgentTool(Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingGroundingSearchToolParameters bingGrounding);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingGroundingAgentTool : Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingGroundingSearchToolParameters -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.BingGroundingAgentTool
Public Sub New (bingGrounding As BingGroundingSearchToolParameters)

Parameters

bingGrounding
BingGroundingSearchToolParameters

The bing grounding search tool parameters.

Exceptions

bingGrounding is null.

Applies to

BingGroundingAgentTool(ToolType, IDictionary<String,BinaryData>, BingGroundingSearchToolParameters)

Source:
BingGroundingAgentTool.cs

Initializes a new instance of BingGroundingAgentTool.

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

Parameters

type
ToolType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

bingGrounding
BingGroundingSearchToolParameters

The bing grounding search tool parameters.

Applies to