Open-source release of MAESTRO, an agent orchestration platform that runs LLM-driven tasks through sandboxed tools, with a web UI. Apache-2.0. See README.md and docs/ (getting-started, configuration, architecture).
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
async function main() {
|
|
console.error('hello from stderr');
|
|
console.error('second line');
|
|
return 'done';
|
|
}
|
|
module.exports = main;
|