Microsoft Azure · Schema

submitToolOutputsRunRequest

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
tool_outputs array A list of tools for which the outputs are being submitted.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-submittooloutputsrunrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/submitToolOutputsRunRequest",
  "title": "submitToolOutputsRunRequest",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "tool_outputs": {
      "description": "A list of tools for which the outputs are being submitted.",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tool_call_id": {
            "type": "string",
            "description": "The ID of the tool call in the `required_action` object within the run object the output is being submitted for."
          },
          "output": {
            "type": "string",
            "description": "The output of the tool call to be submitted to continue the run."
          }
        }
      }
    }
  },
  "required": [
    "tool_outputs"
  ]
}