18 lines
457 B
TypeScript
18 lines
457 B
TypeScript
/**
|
|
* Lean-Agentic Swarm Simulation
|
|
*
|
|
* Tests using lean-agentic npm package for lightweight agent orchestration
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
agents: any;
|
|
operations: number;
|
|
successfulTasks: number;
|
|
avgLatency: number;
|
|
totalTime: number;
|
|
memoryFootprint: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=lean-agentic-swarm.d.ts.map
|