AgentParameterDetail

data class AgentParameterDetail(val description: String? = null, val required: Boolean? = null, val type: AgentType)

Parameter detail

Constructors

Link copied to clipboard
constructor(description: String? = null, required: Boolean? = null, type: AgentType)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

Description of function parameter.

Link copied to clipboard
val required: Boolean? = null

Information about if a parameter is required for function call. Default to false.

Link copied to clipboard

The data type of the parameter.