Microsoft Azure · Schema

Code interpreter log output

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

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type string Always `logs`.
logs string The text output from the Code Interpreter tool call.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-runstepdetailstoolcallscodeoutputlogsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/runStepDetailsToolCallsCodeOutputLogsObject",
  "title": "Code interpreter log output",
  "type": "object",
  "description": "Text output from the Code Interpreter tool call as part of a run step.",
  "properties": {
    "type": {
      "description": "Always `logs`.",
      "type": "string",
      "enum": [
        "logs"
      ],
      "x-ms-enum": {
        "name": "RunStepDetailsToolCallsCodeOutputLogsObjectType",
        "modelAsString": true,
        "values": [
          {
            "value": "code_interpreter"
          }
        ]
      }
    },
    "logs": {
      "type": "string",
      "description": "The text output from the Code Interpreter tool call."
    }
  },
  "required": [
    "type",
    "logs"
  ]
}