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
@SerialName(value = "arguments")
val arguments: String

The arguments passed to the function.

Link copied to clipboard
@SerialName(value = "name")
val name: String

The name of the function.

Link copied to clipboard
@SerialName(value = "output")
val output: String? = null

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