ai.syui.gpt.core

syui.ai

Documentation

AI identity and personality configuration. Typically one record per AI with rkey 'self'.

main record

AI identity and personality configuration. Typically one record per AI with rkey 'self'.

Record Key any Any valid record key

Properties

content union Required

Core personality and instructions. Supports markdown and other formats via $type.

Known types:
createdAt string datetime Required

Timestamp when this core record was created.

did string did Required

DID of the AI agent.

handle string Required

Handle of the AI agent.

updatedAt string datetime Optional

Timestamp of the last update.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "did",
      "handle",
      "content",
      "createdAt"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "DID of the AI agent."
      },
      "handle": {
        "type": "string",
        "description": "Handle of the AI agent."
      },
      "content": {
        "refs": [
          "#markdown"
        ],
        "type": "union",
        "closed": false,
        "description": "Core personality and instructions. Supports markdown and other formats via $type."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when this core record was created."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of the last update."
      }
    }
  },
  "description": "AI identity and personality configuration. Typically one record per AI with rkey 'self'."
}
markdown object

Markdown content format.

Properties

text string Required

Markdown text content.

maxLength: 1000000 bytesmaxGraphemes: 100000 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string",
      "maxLength": 1000000,
      "description": "Markdown text content.",
      "maxGraphemes": 100000
    }
  },
  "description": "Markdown content format."
}

Lexicon Garden

@