FunctionToolCallStep

@Serializable
data class FunctionToolCallStep(val name: String, val arguments: String, val output: String? = null)

Constructors

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

Properties

Link copied to clipboard

The arguments passed to the function.

Link copied to clipboard

The name of the function.

Link copied to clipboard
val output: String? = null

The output of the function. This will be null if the outputs have not been submitted yet.