FunctionResultContent(String, String, Object) 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 the FunctionResultContent class.
public:
FunctionResultContent(System::String ^ callId, System::String ^ name, System::Object ^ result);
[System.Text.Json.Serialization.JsonConstructor]
public FunctionResultContent (string callId, string name, object? result);
[<System.Text.Json.Serialization.JsonConstructor>]
new Microsoft.Extensions.AI.FunctionResultContent : string * string * obj -> Microsoft.Extensions.AI.FunctionResultContent
Public Sub New (callId As String, name As String, result As Object)
Parameters
- callId
- String
The function call ID for which this is the result.
- name
- String
The function name that produced the result.
- result
- Object
null
if the function returned null
or was void-returning
and thus had no result, or if the function call failed. Typically, however, to provide meaningfully representative
information to an AI service, a human-readable representation of those conditions should be supplied.
- Attributes