Package-level declarations

Types

Link copied to clipboard
@Serializable
data class FunctionDto(var name: String = "", var description: String = "", val parametersDto: FunctionParametersDto = FunctionParametersDto())
Link copied to clipboard
@Serializable
data class FunctionParametersDto(var type: String = "object", val properties: MutableMap<String, FunctionPropertyDescDto> = mutableMapOf(), val required: MutableList<String> = mutableListOf())
Link copied to clipboard
@Serializable
data class FunctionPropertyDescDto(var type: String = "", var description: String = "")