Class FunctionCall
Represent a function call the client need to execute in order to fulfill the required action.
Inherited Members
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
public class FunctionCall
Properties
Arguments
Declaration
[Required(ErrorMessage = "Arguments is required.")]
[JsonProperty(PropertyName = "arguments")]
public string Arguments { get; set; }
Property Value
Type | Description |
---|---|
string | Arguments for the function call as a JSON string. |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the function to be executed. |
Remarks
Required