The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.
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
{
"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")
- Downloads last month
- 7