run.tiles.chat.sessionSnapshot

tiles.run

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

name string Required

No description available.

sessionId string Required

No description available.

turns array of object Required

No description available.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "sessionId",
      "createdAt",
      "turns"
    ],
    "properties": {
      "name": {
        "type": "string"
      },
      "turns": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "provider",
            "model",
            "messages"
          ],
          "properties": {
            "api": {
              "type": "string"
            },
            "model": {
              "type": "string"
            },
            "messages": {
              "type": "array",
              "items": {
                "ref": "#message",
                "type": "ref"
              }
            },
            "provider": {
              "type": "string"
            }
          }
        }
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "sessionId": {
        "type": "string"
      }
    }
  }
}
contentItem object

No description available.

Properties

arguments string Optional

No description available.

name string Optional

No description available.

text string Optional

No description available.

thinking string Optional

No description available.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "thinking": {
      "type": "string"
    },
    "arguments": {
      "type": "string"
    }
  }
}
message object

No description available.

Properties

content array of ref#contentItem Required

No description available.

role string Required

No description available.

stopReason string Optional

No description available.

timestamp integer Optional

No description available.

toolName string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "role",
    "content"
  ],
  "properties": {
    "role": {
      "type": "string"
    },
    "content": {
      "type": "array",
      "items": {
        "ref": "#contentItem",
        "type": "ref"
      }
    },
    "toolName": {
      "type": "string"
    },
    "timestamp": {
      "type": "integer"
    },
    "stopReason": {
      "type": "string"
    }
  }
}

Lexicon Garden

@