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.06 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Agent Tools",
"description": "Schema for the 'agent_tools' collection",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"tool_id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["active", "inactive", "deprecated"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"config": {
"type": "object"
},
"input_schema": {
"type": "object"
},
"output_schema": {
"type": "object"
},
"rate_limits": {
"type": "object"
},
"cost_model": {
"type": "object"
},
"performance_stats": {
"type": "object"
}
},
"required": ["tool_id", "name", "description", "version", "status", "created_at", "input_schema", "output_schema"]
}