FirebaseVertexAI Framework Reference

FunctionCall

public struct FunctionCall : Equatable
extension FunctionCall: Decodable
extension FunctionCall: Encodable

A predicted function call returned from the model.

  • The name of the function to call.

    Declaration

    Swift

    public let name: String
  • The function parameters and values.

    Declaration

    Swift

    public let args: JSONObject
  • Declaration

    Swift

    public init(from decoder: Decoder) throws