Logs

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

Code interpreter log output.

Text output from the Code Interpreter tool call as part of a run step.

Constructors

Link copied to clipboard
constructor(text: String? = null)

Properties

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

The text output from the Code Interpreter tool call.