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.
08
AIF Memory Schemas
Event sourcing schemas, memory type definitions, and persistence models for the AIF platform.
Memory Types
Event Sourcing Schema
{
"event_id": "uuid",
"event_type": "string",
"aggregate_id": "string",
"aggregate_type": "string",
"payload": {},
"metadata": {
"trace_id": "string",
"timestamp": "iso8601",
"source": "string",
"version": "int"
}
}Usage
from datasets import load_dataset
ds = load_dataset("FrostyJay7813/aif-memory-schemas")