FunctionCallDelta

data class FunctionCallDelta(val name: String?, val arguments: String)

Represents the "delta," or changes of a function call. This is used by streams to stream 1 token at a time.

Constructors

Link copied to clipboard
constructor(name: String?, arguments: String)

Properties

Link copied to clipboard

1 token of the arguments. Well be delivered as a JSON string.

Link copied to clipboard
val name: String?

The name of the function to call. Will always be null except for the first call.