Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
52
npm/packages/agentic-synth/examples/swarms/collective-intelligence.d.ts
vendored
Normal file
52
npm/packages/agentic-synth/examples/swarms/collective-intelligence.d.ts
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* Collective Intelligence Examples
|
||||
*
|
||||
* Demonstrates swarm intelligence patterns including collaborative
|
||||
* problem-solving, knowledge sharing, emergent behavior simulation,
|
||||
* voting and consensus mechanisms, and reputation systems.
|
||||
*
|
||||
* Integrates with:
|
||||
* - claude-flow: Neural pattern recognition and learning
|
||||
* - ruv-swarm: Collective intelligence coordination
|
||||
* - AgenticDB: Distributed knowledge storage
|
||||
*/
|
||||
/**
|
||||
* Generate collaborative problem-solving session data
|
||||
*/
|
||||
export declare function collaborativeProblemSolving(): Promise<import("../../dist/index.js").GenerationResult<unknown>>;
|
||||
/**
|
||||
* Generate knowledge sharing and transfer data
|
||||
*/
|
||||
export declare function knowledgeSharingPatterns(): Promise<{
|
||||
knowledgeBase: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
transferEvents: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
agentProfiles: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
}>;
|
||||
/**
|
||||
* Generate emergent behavior patterns in swarm systems
|
||||
*/
|
||||
export declare function emergentBehaviorSimulation(): Promise<{
|
||||
swarmStates: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
interactions: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
emergentPatterns: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
behaviorEvolution: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
}>;
|
||||
/**
|
||||
* Generate voting and consensus mechanism data
|
||||
*/
|
||||
export declare function votingAndConsensusData(): Promise<{
|
||||
votingSessions: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
consensusMechanisms: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
votingBehavior: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
}>;
|
||||
/**
|
||||
* Generate reputation and trust system data
|
||||
*/
|
||||
export declare function reputationSystems(): Promise<{
|
||||
reputationProfiles: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
reputationEvents: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
trustRelationships: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
reputationChanges: import("../../dist/index.js").GenerationResult<unknown>;
|
||||
}>;
|
||||
export declare function runAllCollectiveIntelligenceExamples(): Promise<void>;
|
||||
//# sourceMappingURL=collective-intelligence.d.ts.map
|
||||
Reference in New Issue
Block a user