Baseten · Schema

TextBlock

A text content block.

AIMLInferenceDeploymentMLOpsOpenAI CompatibleAnthropic CompatibleTruss

Properties

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

JSON Schema

baseten-textblock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextBlock",
  "title": "TextBlock",
  "additionalProperties": false,
  "type": "object",
  "required": [
    "type",
    "text"
  ],
  "description": "A text content block.",
  "properties": {
    "type": {
      "const": "text",
      "type": "string",
      "description": "The block type, always `text`."
    },
    "text": {
      "type": "string",
      "description": "The text content."
    }
  }
}