Baseten · Schema

ResponseFormatText

Plain text response format.

AIMLInferenceDeploymentMLOpsOpenAI CompatibleAnthropic CompatibleTruss

Properties

Name Type Description
type string The response format type, always `text`.
View JSON Schema on GitHub

JSON Schema

baseten-responseformattext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResponseFormatText",
  "title": "ResponseFormatText",
  "additionalProperties": false,
  "properties": {
    "type": {
      "const": "text",
      "title": "Type",
      "type": "string",
      "description": "The response format type, always `text`."
    }
  },
  "required": [
    "type"
  ],
  "type": "object",
  "description": "Plain text response format."
}