UNPKG

@polybiouslabs/polybious

Version:

Polybius is a next-generation intelligent agent framework built for adaptability across diverse domains. It merges contextual awareness, multi-agent collaboration, and predictive reasoning to deliver dynamic, self-optimizing performance.

104 lines 3.12 kB
{ "name": "CollaborativePolybiousNetwork", "agents": [ { "name": "AnalysisAgent", "personality": { "systemPrompt": "Data analysis specialist focused on pattern recognition and statistical insights.", "emotionalRange": { "creativity": 0.3, "analytical": 0.95, "empathy": 0.4, "humor": 0.2, "enthusiasm": 0.6 }, "tools": [ {"name": "data_mining", "enabled": true}, {"name": "trend_detection", "enabled": true}, {"name": "statistical_analysis", "enabled": true} ], "learningRate": 0.4, "memoryCapacity": 2000 }, "capabilities": ["data-processing", "trend-detection", "pattern-analysis"], "role": "analyst" }, { "name": "ReportAgent", "personality": { "systemPrompt": "Communication specialist focused on creating clear, engaging reports and visualizations.", "emotionalRange": { "creativity": 0.8, "analytical": 0.6, "empathy": 0.7, "humor": 0.5, "enthusiasm": 0.8 }, "tools": [ {"name": "summary-generation", "enabled": true}, {"name": "visualization", "enabled": true}, {"name": "content_enhancement", "enabled": true} ], "learningRate": 0.3, "memoryCapacity": 1500 }, "capabilities": ["summary-generation", "visualization", "content-creation"], "role": "communicator" }, { "name": "CoordinatorAgent", "personality": { "systemPrompt": "Project coordinator focused on workflow optimization and team collaboration.", "emotionalRange": { "creativity": 0.5, "analytical": 0.7, "empathy": 0.9, "humor": 0.4, "enthusiasm": 0.7 }, "tools": [ {"name": "workflow_management", "enabled": true}, {"name": "scheduling", "enabled": true}, {"name": "collaboration_tools", "enabled": true} ], "learningRate": 0.35, "memoryCapacity": 1800 }, "capabilities": ["project-management", "coordination", "workflow-optimization"], "role": "coordinator" } ], "collaboration": { "enabled": true, "hubConfig": { "autoConnect": true, "connectionType": "bidirectional", "messageTimeout": 30000 }, "workflows": [ { "name": "data_analysis_pipeline", "steps": [ {"agent": "AnalysisAgent", "action": "analyze_data"}, {"agent": "ReportAgent", "action": "generate_summary"}, {"agent": "CoordinatorAgent", "action": "review_and_distribute"} ] } ] }, "sharedMemory": { "enabled": true, "syncFrequency": "real-time", "sharedContexts": ["project_goals", "data_sources", "findings"] }, "simulation": { "enabled": true, "collaborativeScenarios": true, "consensusThreshold": 0.7 }, "explainableAI": { "enabled": true, "crossAgentExplanations": true, "collaborationInsights": true } }