FunctionCallPart
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
public struct FunctionCallPart : Part
A predicted function call returned from the model.
-
The name of the function to call.
Declaration
Swift
public var name: String { get }
-
The function parameters and values.
Declaration
Swift
public var args: JSONObject { get }
-
Constructs a new function call part.
Note
A
FunctionCallPart
is typically received from the model, rather than created manually.Declaration
Swift
public init(name: String, args: JSONObject)
Parameters
name
The name of the function to call.
args
The function parameters and values.