No description available.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
No description available.
maxLength: 50000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
durationMs
integer
Optional
Duration for tool_call thoughts
kind
string
Required
No description available.
Known values:
insight, question, plan, reflection, error, response, tool_calltags
array
of
string
Optional
No description available.
maxLength: 20 itemstrigger
string
Optional
What prompted this thought
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"kind",
"content",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"knownValues": [
"insight",
"question",
"plan",
"reflection",
"error",
"response",
"tool_call"
]
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 20
},
"content": {
"type": "string",
"maxLength": 50000
},
"trigger": {
"type": "string",
"description": "What prompted this thought"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"durationMs": {
"type": "integer",
"description": "Duration for tool_call thoughts"
}
}
}
}