UNPKG

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

39 lines • 853 B
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Dynamic Plans", "description": "Schema for the 'dynamic_plans' collection", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[0-9a-fA-F]{24}$" }, "plan_id": { "type": "string" }, "agent_id": { "type": "string" }, "goal": { "type": "string" }, "status": { "type": "string", "enum": ["planning", "ready_for_execution", "executing", "completed", "failed"] }, "plan": { "type": "array", "items": { "type": "object" } }, "validation_critera": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" } }, "required": ["plan_id", "agent_id", "goal", "status", "plan", "created_at"] }