CodeInterpreterToolCallOutput

@Serializable
sealed interface CodeInterpreterToolCallOutput

Inheritors

Types

Link copied to clipboard
@Serializable
@SerialName(value = "image")
data class Image(val image: CodeInterpreterImage) : CodeInterpreterToolCallOutput

Code interpreter image output

Link copied to clipboard
@Serializable
@SerialName(value = "logs")
data class Logs(val text: String? = null) : CodeInterpreterToolCallOutput

Code interpreter log output.