17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
/**
|
|
* Multi-Agent Swarm Simulation
|
|
*
|
|
* Tests concurrent access and coordination using agentic-flow
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
agents: any;
|
|
operations: number;
|
|
conflicts: number;
|
|
avgLatency: number;
|
|
totalTime: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=multi-agent-swarm.d.ts.map
|