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

53 lines • 1.06 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Tool Executions", "description": "Schema for the 'tool_executions' collection", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[0-9a-fA-F]{24}$" }, "execution_id": { "type": "string" }, "tool_id": { "type": "string" }, "agent_id": { "type": "string" }, "workflow_id": { "type": "string" }, "executed_at": { "type": "string", "format": "date-time" }, "input": { "type": "object" }, "output": { "type": "object" }, "performance": { "type": "object" }, "error": { "type": ["object", "null"] }, "retry_count": { "type": "number" }, "embedding": { "type": "array", "items": { "type": "number" } }, "embedding_model": { "type": "string" } }, "required": ["execution_id", "tool_id", "agent_id", "executed_at", "input", "output", "performance"] }