ResponseFormat

@JsonSerializable
@Polymorphic(labelKey = "type")
sealed class ResponseFormat

Inheritors

Types

Link copied to clipboard
@JsonSerializable
@PolymorphicLabel(value = "json_object")
data object Json : ResponseFormat
Link copied to clipboard
@JsonSerializable
@PolymorphicLabel(value = "json_schema")
data class JsonSchema(val strict: Boolean, val json_schema: Map<String, Any>) : ResponseFormat
Link copied to clipboard
@JsonSerializable
@PolymorphicLabel(value = "url")
data object Url : ResponseFormat