// Test script to demonstrate the usage of the adaptive prompt router function\nconst { adaptivePromptRouter } = require('./AdaptivePromptRouter');\n\nconst task = { complexity: 5 };\nconst identity = 'Timmy';\nconst tools = [{ name: 'Tool 1', description: 'This is tool 1' }, { name: 'Tool 2', description: 'This is tool 2' }];\n\nconst prompt = adaptivePromptRouter(task, identity, tools);\nconsole.log(prompt);