FileSearchToolCallItemParam Constructors
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.
Overloads
| Name | Description |
|---|---|
| FileSearchToolCallItemParam() |
Initializes a new instance of FileSearchToolCallItemParam for deserialization. |
| FileSearchToolCallItemParam(IEnumerable<String>) |
Initializes a new instance of FileSearchToolCallItemParam. |
| FileSearchToolCallItemParam(ItemType, IDictionary<String,BinaryData>, IList<String>, IList<FileSearchToolCallItemParamResult>) |
Initializes a new instance of FileSearchToolCallItemParam. |
FileSearchToolCallItemParam()
Initializes a new instance of FileSearchToolCallItemParam for deserialization.
public FileSearchToolCallItemParam();
Public Sub New ()
Applies to
FileSearchToolCallItemParam(IEnumerable<String>)
Initializes a new instance of FileSearchToolCallItemParam.
public FileSearchToolCallItemParam(System.Collections.Generic.IEnumerable<string> queries);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParam : seq<string> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParam
Public Sub New (queries As IEnumerable(Of String))
Parameters
- queries
- IEnumerable<String>
The queries used to search for files.
Exceptions
queries is null.
Applies to
FileSearchToolCallItemParam(ItemType, IDictionary<String,BinaryData>, IList<String>, IList<FileSearchToolCallItemParamResult>)
Initializes a new instance of FileSearchToolCallItemParam.
public FileSearchToolCallItemParam(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, System.Collections.Generic.IList<string> queries, System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParamResult> results);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParam : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * System.Collections.Generic.IDictionary<string, BinaryData> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParamResult> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.FileSearchToolCallItemParam
Public Sub New (type As ItemType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), queries As IList(Of String), results As IList(Of FileSearchToolCallItemParamResult))
Parameters
- type
- ItemType
- serializedAdditionalRawData
- IDictionary<String,BinaryData>
Keeps track of any properties unknown to the library.
- results
- IList<FileSearchToolCallItemParamResult>
The results of the file search tool call.