universal-ai-brain
Version:
🧠UNIVERSAL AI BRAIN 3.3 - The world's most advanced cognitive architecture with 24 specialized systems, MongoDB 8.1 $rankFusion hybrid search, latest Voyage 3.5 embeddings, and framework-agnostic design. Works with Mastra, Vercel AI, LangChain, OpenAI A
51 lines • 1.03 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Agent Memory",
"description": "Schema for the 'agent_memory' collection",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"memory_id": {
"type": "string"
},
"agent_id": {
"type": "string"
},
"memory_type": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"last_accessed": {
"type": "string",
"format": "date-time"
},
"access_count": {
"type": "number"
},
"content": {
"type": "object"
},
"embedding": {
"type": "array",
"items": {
"type": "number"
}
},
"embedding_model": {
"type": "string"
},
"metadata": {
"type": "object"
},
"usage_stats": {
"type": "object"
}
},
"required": ["memory_id", "agent_id", "memory_type", "created_at", "last_accessed", "content"]
}