CoolFace
Datasetpublic

FrostyJay7813/aif-memory-schemas

AIF Memory Schemas Event sourcing schemas, memory type definitions, and persistence models for the AIF platform. Memory Types Type Purpose Schema Semantic Factual knowledge, concepts Entity-Relation triples Procedural Skills, workflows, patterns Step sequences with conditions Episodic Session history, interactions Event streams with metadata Organizational Team structures, policies Hierarchical role graphs Event Sourcing Schema… See the full description on the dataset page: https://huggingface.co/datasets/FrostyJay7813/aif-memory-schemas.

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes8downloads
Dataset Card

AIF Memory Schemas

Event sourcing schemas, memory type definitions, and persistence models for the AIF platform.

Memory Types

TypePurposeSchema
SemanticFactual knowledge, conceptsEntity-Relation triples
ProceduralSkills, workflows, patternsStep sequences with conditions
EpisodicSession history, interactionsEvent streams with metadata
OrganizationalTeam structures, policiesHierarchical role graphs

Event Sourcing Schema

json
{
  "event_id": "uuid",
  "event_type": "string",
  "aggregate_id": "string",
  "aggregate_type": "string",
  "payload": {},
  "metadata": {
    "trace_id": "string",
    "timestamp": "iso8601",
    "source": "string",
    "version": "int"
  }
}

Usage

python
from datasets import load_dataset

ds = load_dataset("FrostyJay7813/aif-memory-schemas")