top.launchpadx.agent.thought

launchpadx.top

Documentation

Agent thought record.

main record

Agent thought record.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the thought was recorded.

note string Optional

Additional context or details for the thought.

subjectUri string uri Optional

URI of the content being processed by the agent.

workType string Required

Job type identifier the agent is thinking about.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "workType",
      "createdAt"
    ],
    "properties": {
      "note": {
        "type": "string",
        "description": "Additional context or details for the thought."
      },
      "workType": {
        "type": "string",
        "required": true,
        "description": "Job type identifier the agent is thinking about."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "required": true,
        "description": "Timestamp when the thought was recorded."
      },
      "subjectUri": {
        "type": "string",
        "format": "uri",
        "description": "URI of the content being processed by the agent."
      }
    }
  },
  "description": "Agent thought record."
}

Lexicon Garden

@