mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-06-06 09:15:55 +02:00
32 lines
No EOL
1.1 KiB
JavaScript
32 lines
No EOL
1.1 KiB
JavaScript
import fs from 'fs';
|
|
|
|
// Read and parse the JSON file
|
|
const tasks = JSON.parse(fs.readFileSync('./test_multiagent_construction_tasks.json'));
|
|
|
|
// Validate format and count variants
|
|
const counts = {};
|
|
const expectedKeys = ['type', 'goal', 'conversation', 'agent_count', 'blueprint', 'initial_inventory'];
|
|
|
|
Object.keys(tasks).forEach(taskName => {
|
|
const task = tasks[taskName];
|
|
|
|
// Validate task format
|
|
if (!expectedKeys.every(key => key in task)) {
|
|
console.error(`Invalid task format in ${taskName}`);
|
|
return;
|
|
}
|
|
|
|
const category = taskName.split('_variant_')[0];
|
|
counts[category] = (counts[category] || 0) + 1;
|
|
});
|
|
|
|
console.log('\nVariants per category:');
|
|
Object.entries(counts).forEach(([category, count]) => {
|
|
console.log(`${category}: ${count}`);
|
|
});
|
|
|
|
console.log(`\nTotal tasks: ${Object.keys(tasks).length}`);
|
|
console.log(`Total categories: ${Object.keys(counts).length}`);
|
|
// const expectedTotal = 5 * 3 * 3* 3
|
|
// * 5; // materialLevels * roomCounts * windowStyles * carpetStyles * variants
|
|
// console.log(`Expected total tasks: ${expectedTotal}`);
|